aboutsummaryrefslogtreecommitdiffstats
path: root/systemd
diff options
context:
space:
mode:
authorLukas Nykryn <lnykryn@redhat.com>2015-07-01 12:39:54 +0200
committerLukas Nykryn <lnykryn@redhat.com>2015-07-01 12:39:54 +0200
commit07389ddc2e88f1d391468e1071e0006411b7da22 (patch)
treea439e94deeb3d0ee3b7e8080901e1f8e8a1dbc02 /systemd
parentc6e94db97c7c188d2f3628879661105368b6f2c1 (diff)
downloadinitscripts-07389ddc2e88f1d391468e1071e0006411b7da22.tar
initscripts-07389ddc2e88f1d391468e1071e0006411b7da22.tar.gz
initscripts-07389ddc2e88f1d391468e1071e0006411b7da22.tar.bz2
initscripts-07389ddc2e88f1d391468e1071e0006411b7da22.tar.xz
initscripts-07389ddc2e88f1d391468e1071e0006411b7da22.zip
fedora-readonly: use --make-slave with --bind mounts
Diffstat (limited to 'systemd')
-rwxr-xr-xsystemd/fedora-readonly9
1 files changed, 6 insertions, 3 deletions
diff --git a/systemd/fedora-readonly b/systemd/fedora-readonly
index f33eef48..50e5ed97 100755
--- a/systemd/fedora-readonly
+++ b/systemd/fedora-readonly
@@ -75,6 +75,9 @@ if [ "$READONLY" = "yes" -o "$TEMPORARY_STATE" = "yes" ]; then
# Scan partitions for local scratch storage
rw_mount_dev=$(blkid -t LABEL="$RW_LABEL" -l -o device)
+ bindmountopts=
+ [ "$SLAVE_MOUNTS" = "yes" ] && bindmountopts="--make-slave"
+
# First try to mount scratch storage from /etc/fstab, then any
# partition with the proper label. If either succeeds, be sure
# to wipe the scratch storage clean. If both fail, then mount
@@ -117,7 +120,7 @@ if [ "$READONLY" = "yes" -o "$TEMPORARY_STATE" = "yes" ]; then
done
[[ $prefix -eq 1 ]] && continue
- mount -n --bind "$RW_MOUNT$m" "$m"
+ mount -n --bind $bindmountopts "$RW_MOUNT$m" "$m"
selinux_fixup "$m"
done
@@ -165,7 +168,7 @@ if [ "$READONLY" = "yes" -o "$TEMPORARY_STATE" = "yes" ]; then
mount_state() {
if [ -e "$1" ]; then
[ ! -e "$STATE_MOUNT$1" ] && cp -a --parents "$1" "$STATE_MOUNT"
- mount -n --bind "$STATE_MOUNT$1" "$1"
+ mount -n --bind $bindmountopts "$STATE_MOUNT$1" "$1"
fi
}
@@ -174,7 +177,7 @@ if [ "$READONLY" = "yes" -o "$TEMPORARY_STATE" = "yes" ]; then
[ ! -f "$file" ] && continue
if [ -f "$STATE_MOUNT/$file" ] ; then
- mount -n --bind "$STATE_MOUNT/$file" "$file"
+ mount -n --bind $bindmountopts "$STATE_MOUNT/$file" "$file"
fi
for path in $(grep -v "^#" "$file" 2>/dev/null); do