681d22d19b
Hey, this is my attempt at updating to Mumble 1.4.230. I cleaned up the spec-file in the process. * Ported specfile to CMake build-system * Use cmake install instead of manual as much as possible * Disabled ICE for now (depends on unavailable lib) * bonjour is no longer optional * Removed init.d script and enabled systemd I removed a lot of branches for other distros or old versions - I hope that was okay. The package builds fine for every repo of the devel-package's build targets. I tested client and server, and both seem to work for me. OBS-URL: https://build.opensuse.org/request/show/947668 OBS-URL: https://build.opensuse.org/package/show/games:tools/mumble?expand=0&rev=139
36 lines
925 B
Desktop File
36 lines
925 B
Desktop File
# 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 time-sync.target
|
|
After=var-run.mount network.target remote-fs.target time-sync.target mysql.target
|
|
|
|
[Service]
|
|
# 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
|
|
User=mumble-server
|
|
Group=mumble-server
|
|
ExecStart=/usr/bin/mumble-server -fg -ini /etc/mumble-server.ini
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|