summaryrefslogtreecommitdiff
path: root/init.d/localmount
diff options
context:
space:
mode:
Diffstat (limited to 'init.d/localmount')
-rwxr-xr-xinit.d/localmount11
1 files changed, 6 insertions, 5 deletions
diff --git a/init.d/localmount b/init.d/localmount
index 2711715..8653399 100755
--- a/init.d/localmount
+++ b/init.d/localmount
@@ -4,11 +4,13 @@
description="Mounts disks and swap according to /etc/fstab."
-depend() {
+depend()
+{
need checkfs
}
-start() {
+start()
+{
# Mount local filesystems in /etc/fstab.
local types="noproc" x=
for x in ${net_fs_list}; do
@@ -23,7 +25,8 @@ start() {
return 0
}
-stop() {
+stop()
+{
# Don't unmount anything for VPS systems
[ "${RC_SYS}" = "VPS" ] && return 0
@@ -80,5 +83,3 @@ stop() {
return 0
}
-
-# vim: set ts=4 :