diff options
author | Lukas Nykryn <lnykryn@redhat.com> | 2013-07-26 10:25:30 +0200 |
---|---|---|
committer | Lukas Nykryn <lnykryn@redhat.com> | 2013-08-19 14:10:54 +0200 |
commit | 975c5407b0125b27c6fe61520d1d348569f10b50 (patch) | |
tree | 0f81dad6c94bdaf49acd44ca56c3097d9a13d136 /rc.d | |
parent | d7a1cd61c04ac21d9a87085a50c49dade5427c90 (diff) | |
download | initscripts-975c5407b0125b27c6fe61520d1d348569f10b50.tar initscripts-975c5407b0125b27c6fe61520d1d348569f10b50.tar.gz initscripts-975c5407b0125b27c6fe61520d1d348569f10b50.tar.bz2 initscripts-975c5407b0125b27c6fe61520d1d348569f10b50.tar.xz initscripts-975c5407b0125b27c6fe61520d1d348569f10b50.zip |
don't care about network filesystems
Diffstat (limited to 'rc.d')
-rwxr-xr-x | rc.d/init.d/network | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/rc.d/init.d/network b/rc.d/init.d/network index 73e9d2f7..a314d9d2 100755 --- a/rc.d/init.d/network +++ b/rc.d/init.d/network @@ -175,15 +175,6 @@ case "$1" in exit 1 fi - # If this is a final shutdown/halt, check for network FS, - # and unmount them even if the user didn't turn on netfs - if [ "$RUNLEVEL" = "6" -o "$RUNLEVEL" = "0" -o "$RUNLEVEL" = "1" ]; then - NETMOUNTS=$(findmnt -n -m -t nfs,nfs4,smbfs,ncpfs,cifs 2>/dev/null) - if [ -n "$NETMOUNTS" ] ; then - /etc/init.d/netfs stop - fi - fi - vlaninterfaces="" vpninterfaces="" xdslinterfaces="" |