aboutsummaryrefslogtreecommitdiff
path: root/src/openssh/sshd
diff options
context:
space:
mode:
Diffstat (limited to 'src/openssh/sshd')
-rwxr-xr-xsrc/openssh/sshd4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/openssh/sshd b/src/openssh/sshd
index d60804e..a25e738 100755
--- a/src/openssh/sshd
+++ b/src/openssh/sshd
@@ -6,7 +6,7 @@
PIDFILE=/run/sshd.pid
PID=$(cat $PIDFILE 2>/dev/null)
-if ! readlink -q /proc/$PID/exe | grep -q '^/usr/sbin/sshd'; then
+if ! readlink -q /proc/$PID/exe | grep -q '^/usr/bin/sshd'; then
PID=
rm $PIDFILE 2>/dev/null
fi
@@ -15,7 +15,7 @@ case "$1" in
start)
stat_busy 'Starting Secure Shell Daemon'
/usr/bin/ssh-keygen -A
- [[ -z $PID ]] && /usr/sbin/sshd $SSHD_ARGS
+ [[ -z $PID ]] && /usr/bin/sshd $SSHD_ARGS
if [[ $? -gt 0 ]]; then
stat_fail
else