summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xetc/rc.initial3
1 files changed, 1 insertions, 2 deletions
diff --git a/etc/rc.initial b/etc/rc.initial
index 8388f71..2277280 100755
--- a/etc/rc.initial
+++ b/etc/rc.initial
@@ -62,8 +62,7 @@ product=`grep product_name /etc/inc/globals.inc | cut -d'"' -f4`
hidebanner=`grep hidebanner /etc/inc/globals.inc | cut -d'"' -f4`
# Check to see if SSH is running.
-SSHD=`/bin/pgrep sshd -F /var/run/sshd.pid`
-if [ "$?" == "0" ]; then
+if pgrep -q -a -F /var/run/sshd.pid sshd >/dev/null 2>&1; then
sshd_option="14) Disable Secure Shell (sshd)";
else
sshd_option="14) Enable Secure Shell (sshd)";
OpenPOWER on IntegriCloud