summaryrefslogtreecommitdiff
path: root/package/nfs-utils
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-12-01 19:40:13 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2009-12-01 19:40:13 +0100
commiteb10ac0e97c1e5e98ce73a1966c97a7cedb9d086 (patch)
treef25892b4f15ef322487a2b00d674c255d148539c /package/nfs-utils
parentb3a54c520195f3cab1109cb90de8179e4dff433f (diff)
use pkill for startup scripts
- seems to solve the issue, that the same init script get killed otherwise - fine tune dansguardian, squid and iptables package - add default firewall config file (from freewrt) - add an example for transparent proxy via an ethernet bridge
Diffstat (limited to 'package/nfs-utils')
-rw-r--r--package/nfs-utils/files/nfsd.init10
1 files changed, 5 insertions, 5 deletions
diff --git a/package/nfs-utils/files/nfsd.init b/package/nfs-utils/files/nfsd.init
index af8a4b94a..9379d6a39 100644
--- a/package/nfs-utils/files/nfsd.init
+++ b/package/nfs-utils/files/nfsd.init
@@ -30,12 +30,12 @@ start)
fi
;;
stop)
- killall nfsd
- killall mountd
- killall statd
+ pkill nfsd
+ pkill mountd
+ pkill statd
if [ ${nfs_server_version} -eq 4 ];then
- killall idmapd
- killall svcgssd
+ pkill idmapd
+ pkill svcgssd
fi
;;
restart)