Skip to content

Commit

Permalink
fix check for running ssh daemon (BNC#864260)
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Feb 17, 2014
1 parent 6739ed6 commit fddbb13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion startup/YaST2.call
Expand Up @@ -507,7 +507,7 @@ fi
# 3.2) prequalification checks for SSH
#---------------------------------------------
# 3.2.1) Check for SSH daemon
if ! /usr/sbin/rcsshd status > /dev/null 2>&1 ; then
if ! pidof sshd > /dev/null 2>&1 ; then
log "\tNo SSH daemon running -> Medium SSH disabled"
MEDIUM[1]=0
fi
Expand Down

1 comment on commit fddbb13

@wfeldt
Copy link
Member

@wfeldt wfeldt commented on fddbb13 Feb 17, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks fine to me

Please sign in to comment.