Implement base service file modification through panel

This commit is contained in:
Dane Everitt 2016-11-09 17:58:14 -05:00
parent b8a6a15b08
commit cfd5e0e854
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
19 changed files with 855 additions and 1 deletions

View file

@ -0,0 +1,52 @@
{
"mumble": {
"tag": "^(mumble)$",
"startup": {
"done": "Server listening on",
"userInteraction": [
"Generating new server certificate"
]
},
"stop": "^C",
"configs": {
"murmur.ini": {
"parser": "ini",
"find": {
"logfile": "murmur.log",
"port": "{{ build.default.port }}",
"host": "0.0.0.0",
"users": "{{ build.env.MAX_USERS }}"
}
}
},
"log": {
"custom": true,
"location": "logs/murmur.log"
},
"query": "mumbleping"
},
"teamspeak": {
"tag": "^(ts3)$",
"startup": {
"done": "listening on 0.0.0.0:",
"userInteraction": []
},
"stop": "^C",
"configs": {
"ts3server.ini": {
"parser": "ini",
"find": {
"default_voice_port": "{{ build.default.port }}",
"voice_ip": "0.0.0.0",
"query_port": "{{ build.default.port }}",
"query_ip": "0.0.0.0"
}
}
},
"log": {
"custom": true,
"location": "logs/ts3.log"
},
"query": "none"
}
}