mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-15 08:29:31 +01:00
2619a23458
Written originally for Gentoo but should work on Alpine and other OpenRC-consuming distros too. Signed-off-by: Sam James <sam@gentoo.org>
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 $?
|
|
}
|