diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2014-11-17 11:00:17 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-11-17 11:00:17 +0000 |
commit | 737eb7d45e3bb61e18acf818809160c6b253b022 (patch) | |
tree | 3b4d273b6b4699d3522d79d16457f86f9e1f2355 /main/mumble/murmur.initd | |
parent | 25cf80b9cfa7fcef67071ceac8298ef97994b772 (diff) | |
download | aports-737eb7d45e3bb61e18acf818809160c6b253b022.tar.bz2 aports-737eb7d45e3bb61e18acf818809160c6b253b022.tar.xz |
main/mumble: move from testing
Diffstat (limited to 'main/mumble/murmur.initd')
-rw-r--r-- | main/mumble/murmur.initd | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/main/mumble/murmur.initd b/main/mumble/murmur.initd new file mode 100644 index 0000000000..ba3cbe4dd1 --- /dev/null +++ b/main/mumble/murmur.initd @@ -0,0 +1,18 @@ +#!/sbin/runscript + +depends() { + needs localmount +} + +description="Mumble VoIP Server" +command="/usr/bin/murmurd" +command_args="-ini /etc/murmur.ini" +pidfile="/var/run/murmur/murmur.pid" + +start_pre() { + checkpath --owner murmur:murmur --directory ${pidfile%/*} +} + +# uses the openrc templates for start()/stop() + + |