From 925bda784a0f2f568439a41c1bb444637d293b2f Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Thu, 08 Aug 2013 15:43:25 -0400 Subject: Add sysfs and mountall init scripts. --- (limited to 'src.etc/init.d/mountall') diff --git a/src.etc/init.d/mountall b/src.etc/init.d/mountall new file mode 100644 index 0000000..c40d48c --- /dev/null +++ b/src.etc/init.d/mountall @@ -0,0 +1,12 @@ +#!/bin/sh + +case "${1}" in + start) + [ ! -d /dev/pts ] && mkdir /dev/pts + mount -a + ;; + *) + printf 'Usage: %s start\n' "${0}" + exit 1 + ;; +esac -- cgit v0.9.1