summaryrefslogtreecommitdiffstats
path: root/src/etc/init.d/mountall
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-08-08 09:00:51 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-08-08 09:00:51 (EDT)
commitd20d4cb39b69c87379952afbf3a60381d238a9f4 (patch)
tree0b1fcd9166749c5fe1d5bae0bf736b5e54b02ae7 /src/etc/init.d/mountall
parentd7af455965f6efcdbcba305dd7584c6ca7bb9cfd (diff)
Remove old source files.
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