2013-06-06 18:23:04 +00:00
|
|
|
# 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)
|
2014-01-11 10:04:05 +00:00
|
|
|
Requires=var-run.mount network.target remote-fs.target time-sync.target
|
|
|
|
After=var-run.mount network.target remote-fs.target time-sync.target mysql.target
|
2013-06-06 18:23:04 +00:00
|
|
|
|
|
|
|
[Service]
|
2021-11-03 14:30:47 +00:00
|
|
|
# added automatically, for details please see
|
|
|
|
# https://en.opensuse.org/openSUSE:Security_Features#Systemd_hardening_effort
|
|
|
|
ProtectSystem=full
|
|
|
|
ProtectHome=true
|
|
|
|
PrivateDevices=true
|
|
|
|
ProtectHostname=true
|
|
|
|
ProtectClock=true
|
|
|
|
ProtectKernelTunables=true
|
|
|
|
ProtectKernelModules=true
|
|
|
|
ProtectKernelLogs=true
|
|
|
|
ProtectControlGroups=true
|
|
|
|
RestrictRealtime=true
|
|
|
|
# end of automatic additions
|
2020-10-24 11:33:25 +00:00
|
|
|
User=mumble-server
|
|
|
|
Group=mumble-server
|
2022-01-20 15:27:42 +00:00
|
|
|
ExecStart=/usr/bin/mumble-server -fg -ini /etc/mumble-server.ini
|
2013-06-06 18:23:04 +00:00
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|