blob: e5e9508029ed8e6de4050adb71788bbc2fa11013 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
case "${1}" in
start)
printf 'Mounting process and system filesystems... '
[ ! -e /proc/mounts ] && mount -t proc proc /proc
[ ! -e /sys/kernel ] && mount -t sysfs sysfs /sys
printf 'done.\n'
;;
stop)
printf 'Unmounting process and system filesystems... '
[ -e /proc/mounts ] && umount /proc
[ -e /sys/kernel ] && umount /sys
printf 'done.\n'
;;
*)
printf 'Usage: %s {start|stop}\n' "${0}" >&2
exit 1
;;
esac
|