mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-15 00:19:29 +01:00
Merge pull request #1894 from thesamesam/openrc-init
distrib: add OpenRC init scripts
This commit is contained in:
commit
28ab3612e2
@ -66,6 +66,7 @@ ergo run # server should be ready to go!
|
|||||||
Some platforms/distros also have Ergo packages maintained for them:
|
Some platforms/distros also have Ergo packages maintained for them:
|
||||||
|
|
||||||
* Arch Linux [AUR](https://aur.archlinux.org/packages/ergochat/) - Maintained by [Jason Papakostas (@vith)](https://github.com/vith).
|
* Arch Linux [AUR](https://aur.archlinux.org/packages/ergochat/) - Maintained by [Jason Papakostas (@vith)](https://github.com/vith).
|
||||||
|
* [Gentoo Linux](https://packages.gentoo.org/packages/net-irc/ergo) - Maintained by [Sam James (@thesamesam)](https://github.com/thesamesam).
|
||||||
|
|
||||||
### Using Docker
|
### Using Docker
|
||||||
|
|
||||||
|
2
distrib/openrc/ergo.confd
Normal file
2
distrib/openrc/ergo.confd
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# /etc/conf.d/ergo: config file for /etc/init.d/ergo
|
||||||
|
ERGO_CONFIGFILE="/etc/ergo/ircd.yaml"
|
19
distrib/openrc/ergo.initd
Normal file
19
distrib/openrc/ergo.initd
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
#!/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 $?
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user