From 1712658f80c8b1696cd1e44355afdea2fc624b91 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sun, 14 Apr 2013 20:23:00 +0200 Subject: [PATCH] installer.sh: also bind mount /run as required by dracut when systemd is running --- installer/installer.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/installer/installer.sh b/installer/installer.sh index f76f208..b7b73ad 100755 --- a/installer/installer.sh +++ b/installer/installer.sh @@ -364,7 +364,7 @@ chmod 0750 $MOUNTPOINT/root UDEV_ROOT=$MOUNTPOINT/dev /lib/udev/devices/MAKEDEV dcop_write $"Binding system dirs to new mountpoint..." 73 -echo $"Binding /dev, /proc and /sys to new mountpoint" +echo $"Binding /dev, /proc, /run and /sys to new mountpoint" mount -o bind /dev $MOUNTPOINT/dev || { echo $"Error: could not bind /dev to new mountpoint; aborting." >&2 abort @@ -373,6 +373,10 @@ mount -o bind /proc $MOUNTPOINT/proc || { echo $"Error: could not bind /proc to new mountpoint; aborting." >&2 abort } +mount -o bind /run $MOUNTPOINT/run || { + echo $"Error: could not bind /run to new mountpoint; aborting." >&2 + abort +} mount -o bind /sys $MOUNTPOINT/sys || { echo $"Error: could not bind /sys to new mountpoint; aborting." >&2 abort @@ -620,6 +624,7 @@ rm -f $MOUNTPOINT/root/.DCOPserver* $MOUNTPOINT/root/.ICEauthority umount $MOUNTPOINT/dev umount $MOUNTPOINT/proc +umount $MOUNTPOINT/run umount $MOUNTPOINT/sys [ "$INSTALL_HOME_DEVICE" ] && umount $MOUNTPOINT/home