# at this point mount will automatically mount it read-only which
# is what is supposed to happen. This way no data can be written
# anymore to disk).
- cmd_run_nolog_box "Unmounting file systems" umount -a -d -r -v -t notmpfs,noproc
+ cmd_run_nolog_box "Unmounting file systems" \
+ umount -a -d -r -v -t notmpfs,nosysfs,nodevtmpfs,noproc,nodevpts
if [ $? -ne 0 ]; then
exit ${EXIT_CODE_WARNING}
fi
+
+ # Make sure / is mounted read-only (umount bug?)
+ mount -o remount,ro /
;;
-
+
*)
echo "Usage: $0 {start|stop}"
exit ${EXIT_CODE_FAILURE}
cmd_run_log_box "Mounting /run" mount /run
;;
- stop)
- umount -n proc
- ;;
-
*)
- echo "Usage: $0 {start|stop}"
+ echo "Usage: $0 {start}"
exit ${EXIT_CODE_FAILURE}
;;
esac