diff options
Diffstat (limited to 'src/etc')
-rw-r--r-- | src/etc/init.d/mountall | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/etc/init.d/mountall b/src/etc/init.d/mountall new file mode 100644 index 0000000..5675752 --- /dev/null +++ b/src/etc/init.d/mountall @@ -0,0 +1,10 @@ +#!/bin/sh + +case "${1}" in + start) + mount -a + ;; + stop) + umount -a -r + ;; +esac |