diff options
Diffstat (limited to 'init.d/netmount.in')
-rw-r--r-- | init.d/netmount.in | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/init.d/netmount.in b/init.d/netmount.in index 2ce5c2a9..99db1858 100644 --- a/init.d/netmount.in +++ b/init.d/netmount.in @@ -22,10 +22,6 @@ start() ebegin "Mounting network filesystems" mount -at $fs rc=$? - if [ "$RC_UNAME" = Linux ]; then - mount -a -O _netdev - rc=$? - fi ewend $rc "Could not mount all network filesystems" } @@ -53,9 +49,5 @@ stop() retval=$? eoutdent - if [ "$RC_UNAME" = Linux ]; then - umount -a -O _netdev - retval=$? - fi eend $retval "Failed to unmount network filesystems" } |