Skip to content

Instantly share code, notes, and snippets.

@raspi
Last active September 16, 2023 16:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raspi/ab1d25ed48482e7198e2297439b74eb4 to your computer and use it in GitHub Desktop.
Save raspi/ab1d25ed48482e7198e2297439b74eb4 to your computer and use it in GitHub Desktop.
Mumble (murmur) server systemd user service
# systemctl --user enable murmur
# systemctl --user start murmur
# .config/systemd/user/murmur.service :
[Unit]
Description=Mumble Daemon
After=network.target
[Service]
Type=simple
ExecStart=/usr/bin/murmurd -ini murmur.ini -fg
# Change this!
WorkingDirectory=/home/raspi/murmur
Restart=always
#PrivateDevices=true
#PrivateTmp=true
#ProtectSystem=full
#ProtectHome=true
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment