From 35fc6f409f7372549b7c07bddecc6dc9541160c9 Mon Sep 17 00:00:00 2001 From: Daniel Hokka Zakrisson Date: Sun, 13 Dec 2009 14:58:02 +0000 Subject: [PATCH] Only restart services which are enabled. --- pl_mop.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/pl_mop.sh b/pl_mop.sh index a94afbf..a278230 100755 --- a/pl_mop.sh +++ b/pl_mop.sh @@ -54,6 +54,7 @@ fix_etc_shadow() { # keep essential services running restart_services() { for service in sshd pl_sshd swapmon nm fprobe-ulog codemux; do + chkconfig --list $service | grep -q 3:on || continue echo "* Checking $service" status=$(service $service status) if [ $? -ne 0 ] || echo $status 2>&1 | grep -q stopped ; then -- 2.43.0