mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-25 05:19:25 +01:00
20 lines
382 B
Plaintext
20 lines
382 B
Plaintext
|
#!/sbin/openrc-run
|
||
|
command=/usr/bin/ergo
|
||
|
command_args="run --conf ${ERGO_CONFIGFILE:-"/etc/ergo/ircd.yaml"}"
|
||
|
command_background=true
|
||
|
extra_started_commands="reload"
|
||
|
pidfile=/var/run/ergo.pid
|
||
|
name="ergo"
|
||
|
description="ergo IRC daemon"
|
||
|
|
||
|
depend() {
|
||
|
use dns
|
||
|
provide ircd
|
||
|
}
|
||
|
|
||
|
reload() {
|
||
|
ebegin "Reloading ${RC_SVCNAME}"
|
||
|
start-stop-daemon --signal HUP --pidfile "${pidfile}"
|
||
|
eend $?
|
||
|
}
|