3d24096431
We can now start SSH with optional syslogging support. Also, if a program is not already present in the /etc/rc.d "profile" (actually, not it has become a collection of profiles) it will be automatically added. This sounds hackish, and it probably is, but also, it might be the best workable solution for now... svn path=/nixpkgs/trunk/; revision=5044
65 lines
817 B
Bash
Executable File
65 lines
817 B
Bash
Executable File
#!@bash@/bin/bash
|
|
#
|
|
# Dummy init file for syslog, hacketyhack!
|
|
#
|
|
# chkconfig: 2345 55 25
|
|
# description: OpenSSH server daemon
|
|
#
|
|
# processname: sshd
|
|
|
|
# source function library
|
|
source @initscripts@/functions
|
|
|
|
# pull in sysconfig settings
|
|
#[ -f /etc/sysconfig/sshd ] && . /etc/sysconfig/sshd
|
|
|
|
RETVAL=0
|
|
prog=@nicename@
|
|
|
|
startService()
|
|
{
|
|
# just do networking
|
|
echo -n "Starting $prog:"
|
|
@syslog@/usr/sbin/syslogd
|
|
@syslog@/usr/sbin/klogd
|
|
}
|
|
|
|
stopService()
|
|
{
|
|
echo -n "Stopping $prog:"
|
|
kill `cat /var/run/syslogd.pid`
|
|
kill `cat /var/run/klogd.pid`
|
|
}
|
|
|
|
reloadService()
|
|
{
|
|
stop
|
|
start
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
restart)
|
|
stop
|
|
start
|
|
;;
|
|
reload)
|
|
reload
|
|
;;
|
|
status)
|
|
status
|
|
;;
|
|
name)
|
|
name
|
|
;;
|
|
*)
|
|
echo $"Usage: $0 {start|stop|restart|reload|status}"
|
|
RETVAL=1
|
|
esac
|
|
exit $RETVAL
|