mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-22 19:16:32 +01:00
10 lines
165 B
Bash
10 lines
165 B
Bash
#!/bin/sh
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
mkdir -p /etc
|
|
if [ ! -e /etc/mtab ]; then
|
|
ln -s /proc/mounts /etc/mtab
|
|
fi
|
|
|
|
exec /steps/improve/after.sh
|