fixed bug with not stopping portmapper (additional killall -9)
authorMichael Gebetsroither <michael.geb@gmx.at>
Sat, 19 Nov 2005 09:56:59 +0000 (10:56 +0100)
committerMichael Gebetsroither <michael.geb@gmx.at>
Sat, 19 Nov 2005 09:56:59 +0000 (10:56 +0100)
debian/changelog
grml-terminalserver

index b23de61..7c9f48d 100644 (file)
@@ -3,8 +3,9 @@ grml-terminalserver (0.68) unstable; urgency=low
   * fixed bug in dhcp-config template
   * fixed bug with false NETWORK_
   * changed configfile layout (still fully compatibel to older versions)
+  * fixed bug with not stopping portmapper (additional killall -9) 
 
- -- Michael Gebetsroither <michael.geb@gmx.at>  Sat, 19 Nov 2005 10:51:23 +0100
+ -- Michael Gebetsroither <michael.geb@gmx.at>  Sat, 19 Nov 2005 10:56:16 +0100
 
 grml-terminalserver (0.67) unstable; urgency=low
 
index 7b990d2..d69a3e5 100755 (executable)
@@ -60,6 +60,11 @@ OPTIONS:
 EOT
 }
 
+function killPortmapper
+{
+    /etc/init.d/portmap stop >/dev/null 2>&1
+    killall -9 portmap
+}
 
 # DHCP SERVICE {{{
 function createDhcpConf
@@ -161,7 +166,7 @@ function stopNfs
   else
     /etc/init.d/nfs-kernel-server stop >/dev/null 2>&1
     /etc/init.d/nfs-common stop >/dev/null 2>&1
-    /etc/init.d/portmap stop >/dev/null 2>&1
+    killPortmapper
   fi
 }
 # }}}