summaryrefslogtreecommitdiffstats
path: root/src/etc
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-04-29 23:58:21 (EDT)
committer P. J. McDermott <pjm@nac.net>2012-04-29 23:58:21 (EDT)
commitf7e704dd1aac625991a236f096a1af9463e7196c (patch)
tree43174580e9256e475f9dfc559ad0ae5688e1e4e7 /src/etc
parent1c989dde1279c5d5e2c1984c9172875e74eb20cb (diff)
Make sure "/dev/pts" exists.
Diffstat (limited to 'src/etc')
-rwxr-xr-xsrc/etc/init.d/mountall1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/etc/init.d/mountall b/src/etc/init.d/mountall
index 5675752..8b8fa04 100755
--- a/src/etc/init.d/mountall
+++ b/src/etc/init.d/mountall
@@ -2,6 +2,7 @@
case "${1}" in
start)
+ [ ! -d /dev/pts ] && mkdir /dev/pts
mount -a
;;
stop)