blob: 42541d30f6be19144c6b49b7007f2e8b7bd135cd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
[Unit]
Description=TeamSpeak3 Server
After=network-online.target
Wants=network-online.target
[Service]
Type=simple
User={{ teamspeak.user }}
Group={{ teamspeak.user }}
WorkingDirectory={{ teamspeak.home }}
{% if teamspeak_ini_enabled %}
ExecStart={{ teamspeak.home }}/ts3server_minimal_runscript.sh inifile={{ teamspeak_ini_filename }}
{% else %}
ExecStart={{ teamspeak.home }}/ts3server_minimal_runscript.sh
{% endif %}
[Install]
WantedBy=multi-user.target
|