Add 'NONE-CKUBU2'.

This commit is contained in:
2018-05-08 11:23:49 +02:00
parent 8aca058693
commit 52c0715b15
158 changed files with 38303 additions and 0 deletions

20
NONE-CKUBU2/sbin/rebind Executable file
View File

@ -0,0 +1,20 @@
#!/bin/bash
case "$1" in
on)
set -x
mount --bind /proc /ro/proc
mount --bind /sys /ro/sys
mount --bind /dev /ro/dev
mount --bind /dev/pts /ro/dev/pts
;;
off)
set -x
umount /ro/dev/pts
umount /ro/dev
umount /ro/sys
umount /ro/proc
;;
*)
echo "Use: $0 (on|off)"
esac