X-Git-Url: http://git.pld-linux.org/?a=blobdiff_plain;f=opensshd.init;h=a6cf16ed9bbf17b16ab0a780a7d24ab181835445;hb=9a6dd2b656a780727065e29fd582d149d4a96ee6;hp=64bc8f7b7c01f59c4e4a89475844e5077fcb1b26;hpb=3007cef9b2b0b995e6a84f77419db6f0db7a72bd;p=packages%2Fopenssh.git diff --git a/opensshd.init b/opensshd.init index 64bc8f7..a6cf16e 100644 --- a/opensshd.init +++ b/opensshd.init @@ -8,6 +8,7 @@ # Ssh can be used for remote login, remote file copying, TCP port \ # forwarding etc. Ssh offers strong encryption and authentication. +SSHD_OOM_ADJUST=-17 # Source function library . /etc/rc.d/init.d/functions @@ -28,10 +29,19 @@ else exit 0 fi -RETVAL=0 -# See how we were called. -case "$1" in - start) +adjust_oom() { + if [ -e /var/run/sshd.pid ]; then + for pid in $(cat /var/run/sshd.pid); do + echo "$SSHD_OOM_ADJUST" 2>/dev/null > /proc/$pid/oom_adj + done + fi +} + +checkconfig() { + /usr/sbin/sshd -t || exit 1 +} + +start() { # generate new keys with empty passwords if they do not exist if [ ! -f /etc/ssh/ssh_host_key -o ! -s /etc/ssh/ssh_host_key ]; then /usr/bin/ssh-keygen -t rsa1 -f /etc/ssh/ssh_host_key -N '' 1>&2 @@ -49,6 +59,8 @@ case "$1" in [ -x /sbin/restorecon ] && /sbin/restorecon /etc/ssh/ssh_host_dsa_key || : fi + checkconfig + if [ ! -f /etc/ssh/ssh_host_key ]; then msg_not_running OpenSSH nls "No SSH host key found! You must run \"%s init\" first." "$0" @@ -58,14 +70,16 @@ case "$1" in # Check if the service is already running? if [ ! -f /var/lock/subsys/sshd ]; then msg_starting OpenSSH - daemon /usr/sbin/sshd + daemon --pidfile /var/run/sshd.pid /usr/sbin/sshd RETVAL=$? + adjust_oom [ $RETVAL -eq 0 ] && touch /var/lock/subsys/sshd else msg_already_running OpenSSH fi - ;; - stop) +} + +stop() { if [ -f /var/lock/subsys/sshd ]; then msg_stopping OpenSSH # we use start-stop-daemon to stop sshd, as it is unacceptable for such @@ -76,11 +90,21 @@ case "$1" in else msg_not_running OpenSSH fi +} + +RETVAL=0 +# See how we were called. +case "$1" in + start) + start + ;; + stop) + stop ;; restart) - $0 stop - $0 start - exit $? + checkconfig + stop + start ;; status) status sshd @@ -103,11 +127,12 @@ case "$1" in ;; reload|force-reload) if [ -f /var/lock/subsys/sshd ]; then + checkconfig msg_reloading OpenSSH killproc sshd -HUP RETVAL=$? else - msg_not_running OpenSSH >&2 + msg_not_running OpenSSH exit 7 fi ;;