Re: [suse-sparc] startup script for sshd

From: Harold Sinclair (hsinclai@nefyeidi.net)
Date: Fri Dec 08 2000 - 17:36:24 PST

  • Next message: Thorsten Kukuk: "Re: [suse-sparc] startup script for sshd"

    Date: Fri, 8 Dec 2000 20:36:24 -0500 (EST)
    From: Harold Sinclair <hsinclai@nefyeidi.net>
    Message-ID: <Pine.LNX.4.30.0012082036030.1837-100000@florian.nefyeidi.net>
    Subject: Re: [suse-sparc] startup script for sshd
    

    That looks like a DeadRat script :)

    On Fri, 8 Dec 2000, William P. Dulyea wrote:

    >Post and past this...
    >
    >*********************** START ************************************
    >#!/bin/bash
    >
    ># Init file for OpenSSH server daemon # # chkconfig: 2345 55 25 #
    >description: OpenSSH server daemon # # processname: sshd # config:
    >/etc/ssh/ssh_host_key # config: /etc/ssh/ssh_host_key.pub # config:
    >/etc/ssh/ssh_random_seed # config: /etc/ssh/sshd_config # pidfile:
    >/var/run/sshd.pid
    >
    ># source function library #. /etc/rc.d/init.d/functions . /etc/rc.config
    >
    >return=$rc_done
    >
    >RETVAL=0
    >
    >case "$1" in
    > start) echo -n "Starting sshd: "
    > if [ ! -f /var/run/sshd.pid ] ; then
    > case "`type -type success`" in
    > function)
    > /usr/sbin/sshd && success "sshd startup" || failure "sshd
    >startup"
    > RETVAL=$?
    > ;;
    > *)
    > /usr/sbin/sshd && echo -n "sshd "
    > RETVAL=$?
    > ;;
    > esac
    > [ $RETVAL -eq 0 ] && touch /var/lock/subsys/sshd
    > else
    > return=$rc_failed_up
    > fi
    >
    > echo -e "$return"
    > ;;
    > stop)
    > echo -n "Shutting down sshd: "
    > if [ -f /var/run/sshd.pid ] ; then
    > killproc /usr/sbin/sshd
    > else return=$rc_failed_up
    > fi
    >
    > echo -n
    > [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/sshd
    > echo -e "$return"
    > ;;
    > restart)
    > $0 stop
    > $0 start
    > RETVAL=$?
    > echo -e "$return"
    > ;;
    > status)
    > echo -n "Checking status of service sshd: "
    > checkproc /usr/sbin/sshd && echo -n "OK" || echo -n "Not running"
    > RETVAL=$?
    > echo -e "$return"
    > ;;
    > *)
    > echo "Usage: sshd {start|stop|restart|status}"
    > exit 1
    >esac
    >exit $RETVAL
    >
    >
    >*************************** CUT ****************************************
    >

    --
    $Id: .signature,v .99 Fri Dec  8 12:22:05 2000 hsinclai Exp $
    Program terminated
    {7} abnormal   CONTACT YOUR SUPERVISOR
    



    This archive was generated by hypermail 2.1.0 : Wed Jun 06 2001 - 11:08:27 PDT