21 lines
536 B
SYSTEMD
21 lines
536 B
SYSTEMD
|
# This file is part of package mumble-server.
|
||
|
#
|
||
|
# Copyright (c) 2013 Pascal Bleser <pascal.bleser@opensuse.org>
|
||
|
# Author: Pascal Bleser
|
||
|
#
|
||
|
# Description:
|
||
|
#
|
||
|
# Used to start the Mumble server (murmurd)
|
||
|
#
|
||
|
|
||
|
[Unit]
|
||
|
Description=Mumble Server (murmur)
|
||
|
Requires=var-run.mount network.target remote-fs.target syslog.target time-sync.target
|
||
|
After=var-run.mount network.target remote-fs.target syslog.target time-sync.target mysql.target
|
||
|
|
||
|
[Service]
|
||
|
ExecStart=/usr/sbin/murmurd -fg -ini /etc/mumble-server.ini
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|