summaryrefslogtreecommitdiffstats
path: root/src/etc/init.d/mountall
diff options
context:
space:
mode:
Diffstat (limited to 'src/etc/init.d/mountall')
-rwxr-xr-xsrc/etc/init.d/mountall12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/etc/init.d/mountall b/src/etc/init.d/mountall
deleted file mode 100755
index c40d48c..0000000
--- a/src/etc/init.d/mountall
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-case "${1}" in
- start)
- [ ! -d /dev/pts ] && mkdir /dev/pts
- mount -a
- ;;
- *)
- printf 'Usage: %s start\n' "${0}"
- exit 1
- ;;
-esac