search for: sshd_title

Displaying 1 result from an estimated 1 matches for "sshd_title".

2001 Jan 11
0
OpenSSH 2.3.0p1 on Compaq Alpha
...#!/sbin/sh # # Purpose: Start sshd for OpenSSH at boot time. # For Compaq Alpha (Tru64 UNIX 4.0F and 5.1). # # Author: Hans-Georg Pabst, CH-8702 Zollikon, Switzerland # <hans-georg.pabst at ch.adtranz.com> # SSHD_DAEMON=/usr/local/sbin/sshd SSHD_CONFIG=/etc/ssh SSHD_OPTS= SSHD_TITLE="SSH Daemon (OpenSSH 2.3.0)" SSHD_PID_FILE=/var/run/sshd.pid PATH=/sbin:/usr/sbin:/usr/bin:/usr/local/bin:/usr/local/sbin export PATH Pid=`/sbin/init.d/bin/getpid $SSHD_DAEMON -uroot` case "$1" in 'start') if [ -z "$Pid" ]; then if [ ! -f $SSHD...