#!/bin/sh # # Mounts filesystems. # umask 077 start() { echo -n "Mounting filesystems: " /bin/mount -o remount,rw / /bin/mount -t proc proc /proc /bin/mount -a echo "OK" } stop() { return } restart() { return } case "$1" in start) start ;; stop) stop ;; restart|reload) restart ;; *) echo $"Usage: $0 {start|stop|restart}" exit 1 esac exit $?