aboutsummaryrefslogtreecommitdiff
path: root/rc.shutdown
diff options
context:
space:
mode:
authorJudd Vinet <judd@archlinux.org>2006-11-08 20:01:06 +0000
committerJudd Vinet <judd@archlinux.org>2006-11-08 20:01:06 +0000
commitef6a41ebd7e2ab216e4b950df2a6d0826aef39b7 (patch)
tree1009a44299771f0fc03e72c2b926edab60cf4afa /rc.shutdown
parent01f15f89c1cf4cdb77c7d0a8ddb37ddabd7df012 (diff)
downloadinitscripts-ef6a41ebd7e2ab216e4b950df2a6d0826aef39b7.tar.xz
patch from Paul to disable NIS domainname before shutting down (syslog-ng was hanging). Also added a 2>/dev/null to fsck during startup
Diffstat (limited to 'rc.shutdown')
-rwxr-xr-xrc.shutdown5
1 files changed, 5 insertions, 0 deletions
diff --git a/rc.shutdown b/rc.shutdown
index aae042e..d0a094e 100755
--- a/rc.shutdown
+++ b/rc.shutdown
@@ -13,6 +13,11 @@ echo " "
printhl "Initiating Shutdown..."
echo " "
+# avoid NIS hanging syslog-ng on shutdown by unsetting the domainname
+if [ -x /bin/domainname ]; then
+ /bin/domainname ""
+fi
+
if [ -x /etc/rc.local.shutdown ]; then
/etc/rc.local.shutdown
fi