mirror of
https://github.com/Kicksecure/security-misc.git
synced 2024-12-25 08:09:23 -05:00
Only remount if already mounted read-only
This commit is contained in:
parent
20f0c574d5
commit
89ada11cf9
@ -16,10 +16,15 @@ prereqs)
|
||||
esac
|
||||
|
||||
## ${rootmnt} is mounted read-only in the initramfs so it needs to be remounted first.
|
||||
if mount | grep "${rootmnt}" | grep -q "(ro,"; then
|
||||
remount="yes"
|
||||
mount -o remount,rw "${rootmnt}"
|
||||
fi
|
||||
sysctl -p ${rootmnt}/etc/sysctl.conf >/dev/null 2>${rootmnt}/var/log/sysctl-initramfs-error.log
|
||||
sysctl -p ${rootmnt}/etc/sysctl.d/*.conf >/dev/null 2>>${rootmnt}/var/log/sysctl-initramfs-error.log
|
||||
if [ "${remount}" = "yes" ]; then
|
||||
mount -o remount,ro "${rootmnt}"
|
||||
fi
|
||||
grep -v "unprivileged_userfaultfd" "${rootmnt}/var/log/sysctl-initramfs-error.log"
|
||||
|
||||
true
|
||||
|
Loading…
Reference in New Issue
Block a user