diff options
author | Roy Marples <roy@marples.name> | 2008-01-11 12:13:46 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-01-11 12:13:46 +0000 |
commit | 3bf49a9bd19d5bbcf6976dd42b4f87f1b173e287 (patch) | |
tree | 8b4d6121f0d4b921566eeec2844c9bf76131de78 /init.d.Linux/procfs | |
parent | 1f4422c72f968405a0b8bf56d4f9c3b619b1b80d (diff) |
Adopt a more C style for scripts and remove vim settings.
Diffstat (limited to 'init.d.Linux/procfs')
-rw-r--r-- | init.d.Linux/procfs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/init.d.Linux/procfs b/init.d.Linux/procfs index eccb2ef5..fecaa425 100644 --- a/init.d.Linux/procfs +++ b/init.d.Linux/procfs @@ -4,11 +4,13 @@ description="Mounts misc filesystems in /proc." -depend() { +depend() +{ need checkfs } -start() { +start() +{ # Make sure we insert usbcore if its a module if [ -f /proc/modules -a ! -d /proc/bus/usb ]; then modprobe -q usbcore @@ -84,5 +86,3 @@ start() { return 0 } - -# vim: set ts=4 : |