-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,23 +3,23 @@ | |
"meta": { | ||
"version": "PTDL_v1" | ||
}, | ||
"exported_at": "2019-11-09T10:51:21+01:00", | ||
"exported_at": "2020-02-02T15:23:47+00:00", | ||
"name": "Teamspeak3 Server", | ||
"author": "[email protected]", | ||
"description": "VoIP software designed with security in mind, featuring crystal clear voice quality, endless customization options, and scalabilty up to thousands of simultaneous users.", | ||
"image": "quay.io\/parkervcp\/pterodactyl-images:base_debian", | ||
"startup": ".\/update.sh", | ||
"image": "quay.io/parkervcp/pterodactyl-images:base_debian", | ||
"startup": "./update.sh", | ||
"config": { | ||
"files": "{\r\n \"ts3server.ini\": {\r\n \"parser\": \"ini\",\r\n \"find\": {\r\n \"default_voice_port\": \"{{server.build.default.port}}\",\r\n \"voice_ip\": \"0.0.0.0, ::\",\r\n \"filetransfer_port\": \"{{server.build.env.FILETRANSFER_PORT}}\",\r\n \"filetransfer_ip\": \"0.0.0.0, ::\",\r\n \"query_port\": \"{{server.build.env.QUERY_PORT}}\",\r\n \"query_ip\": \"0.0.0.0, ::\",\r\n \"logquerycommands\": \"{{server.build.env.LOG_QUERY_COMMANDS}}\",\r\n \"license_accepted\": \"1\",\r\n \"query_ssh_ip\": \"0.0.0.0, ::\",\r\n \"query_ssh_port\": \"{{server.build.env.QUERY_SSH_PORT}}\",\r\n \"query_protocols\": \"{{server.build.env.QUERY_PROTOCOLS}}\",\r\n \"query_ssh_rsa_host_key\": \"{{server.build.env.QUERY_SSH_KEY}}\",\r\n \"query_timeout\": \"{{server.build.env.QUERY_TIMEOUT}}\"\r\n }\r\n },\r\n \"version_static.txt\": {\r\n \"parser\": \"ini\",\r\n \"find\": {\r\n \"SERVER_VERSION\": \"{{server.build.env.SERVER_VERSION}}\"\r\n }\r\n }\r\n}", | ||
"startup": "{\r\n \"done\": \"listening for query\",\r\n \"userInteraction\": []\r\n}", | ||
"logs": "{\r\n \"custom\": true,\r\n \"location\": \"logs\/ts3server_custom.log\"\r\n}", | ||
"logs": "{\r\n \"custom\": true,\r\n \"location\": \"logs/ts3server_custom.log\"\r\n}", | ||
"stop": "^C" | ||
}, | ||
"scripts": { | ||
"installation": { | ||
"script": "#!\/bin\/ash\r\n# TS3 Installation Script\r\n#\r\n# Server Files: \/mnt\/server\r\n\r\necho 'apk update ; installing tar and curl'\r\napk update\r\napk add tar curl\r\ncd \/mnt\/server || exit\r\nTSVERSION=$(curl https:\/\/raw.githubusercontent.com\/KingJP\/teamspeak-egg\/master\/tsversion)\r\necho \"latest ts3 version: $TSVERSION\"\r\necho 'installing...'\r\ncurl https:\/\/files.teamspeak-services.com\/releases\/server\/\"$TSVERSION\"\/teamspeak3-server_linux_amd64-\"$TSVERSION\".tar.bz2 | tar xj --strip-components=1\r\necho 'accepting license...'\r\necho '' > .ts3server_license_accepted\r\necho \"$TSVERSION\" > version_installed.txt\r\necho 'downloading startscript...'\r\ncurl -H 'Cache-Control: max-age=0' https:\/\/raw.githubusercontent.com\/KingJP\/teamspeak-egg\/master\/update.sh > update.sh\r\nchmod +x update.sh\r\necho \"\" > ts3server.ini\r\necho \"\" > version_static.txt\r\necho \"SERVER_VERSION=\" > version_static.txt\r\necho 'finished!'", | ||
"container": "alpine:3.4", | ||
"entrypoint": "ash" | ||
"script": "#!/bin/bash\r\n# TS3 Installation Script\r\n#\r\n# Server Files: /mnt/server\r\n\r\necho 'apt-get update ; installing tar and curl'\r\napt-get update\r\napt-get install tar curl\r\ncd /mnt/server || exit\r\nTSVERSION=$(curl https://raw.githubusercontent.com/jpylypiw/teamspeak-egg/master/tsversion)\r\necho \"latest ts3 version: $TSVERSION\"\r\necho 'installing...'\r\ncurl https://files.teamspeak-services.com/releases/server/\"$TSVERSION\"/teamspeak3-server_linux_amd64-\"$TSVERSION\".tar.bz2 | tar xj --strip-components=1\r\necho 'accepting license...'\r\necho '' > .ts3server_license_accepted\r\necho \"$TSVERSION\" > version_installed.txt\r\necho 'downloading startscript...'\r\ncurl -H 'Cache-Control: max-age=0' https://raw.githubusercontent.com/jpylypiw/teamspeak-egg/master/update.sh > update.sh\r\nchmod +x update.sh\r\necho \"\" > ts3server.ini\r\necho \"\" > version_static.txt\r\necho \"SERVER_VERSION=\" > version_static.txt\r\necho 'finished!'", | ||
"container": "ubuntu:16.04", | ||
"entrypoint": "bash" | ||
} | ||
}, | ||
"variables": [ | ||
|
@@ -96,4 +96,4 @@ | |
"rules": "nullable|string|max:8" | ||
} | ||
] | ||
} | ||
} |