aboutsummaryrefslogtreecommitdiff
path: root/init.d/netmount.in
diff options
context:
space:
mode:
Diffstat (limited to 'init.d/netmount.in')
-rw-r--r--init.d/netmount.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/init.d/netmount.in b/init.d/netmount.in
index 99db1858..9f8537d1 100644
--- a/init.d/netmount.in
+++ b/init.d/netmount.in
@@ -23,6 +23,12 @@ start()
mount -at $fs
rc=$?
ewend $rc "Could not mount all network filesystems"
+ if [ "$RC_UNAME" != Linux ]; then
+ rc=0
+ elif [ "$rc" = 64 ]; then
+ rc=0
+ fi
+ return $rc
}
stop()