Various example startup scripts

This commit is contained in:
Sergey Matveev 2015-10-07 19:30:12 +03:00
parent 171c6d6df3
commit a4ce3f8999
3 changed files with 64 additions and 0 deletions

43
startup/debian.sh Executable file
View File

@ -0,0 +1,43 @@
#! /bin/sh
### BEGIN INIT INFO
# Provides: goircd
# Required-Start: $remote_fs $network
# Required-Stop: $remote_fs $network
# Default-Start: 2 3 4 5
# Default-Stop:
# Short-Description: goircd IRC server
# Description: goircd IRC server
### END INIT INFO
NAME=goircd
DAEMON=/home/goircd/goircd
PIDFILE=/var/run/goircd.pid
. /lib/lsb/init-functions
case "$1" in
start)
log_daemon_msg "Starting $NAME daemon" "$NAME"
start-stop-daemon --start --quiet --background \
--pidfile $PIDFILE --make-pidfile --exec $DAEMON \
-- -hostname irc.example.com
log_end_msg $?
;;
stop)
log_daemon_msg "Stopping $NAME daemon" "$NAME"
start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE
log_end_msg $?
rm -f $PIDFILE
;;
restart)
$0 stop || :
$0 start
;;
status)
status_of_proc -p $PIDFILE "$NAME" "$NAME"
;;
*)
echo "Usage: /etc/init.d/goircd {start|stop|restart|status}"
exit 1
esac

15
startup/freebsd.rc Normal file
View File

@ -0,0 +1,15 @@
#!/bin/sh
#
# PROVIDE: goircd
# REQUIRE: FILESYSTEMS NETWORKING
. /etc/rc.subr
name="goircd"
rcvar=goircd_enable
command="/home/goircd/goircd"
command_args="-hostname irc.example.com &"
load_rc_config $name
run_rc_command "$1"

6
startup/upstart.conf Normal file
View File

@ -0,0 +1,6 @@
description "goircd IRC server"
start on (started networking)
stop on (stopped networking)
console log
exec /home/goircd/goircd -hostname irc.example.com