2020-09-13 18:50:49 +08:00
{
"_comment" : "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO" ,
"meta" : {
2024-04-07 21:03:34 +08:00
"version" : "PTDL_v2" ,
"update_url" : null
2020-09-13 18:50:49 +08:00
} ,
2024-04-07 21:03:34 +08:00
"exported_at" : "2024-04-01T12:36:10+02:00" ,
2020-09-13 18:50:49 +08:00
"name" : "OpenRA - Tiberian Dawn" ,
"author" : "patz.michael@gmail.com" ,
"description" : "OpenRA is a project that recreates and modernizes the classic Command & Conquer real time strategy games. We have developed a flexible open source game engine (the OpenRA engine) that provides a common platform for rebuilding and reimagining classic 2D and 2.5D RTS games (the OpenRA mods)." ,
2024-04-07 21:03:34 +08:00
"features" : null ,
"docker_images" : {
"ghcr.io\/parkervcp\/yolks:mono_latest" : "ghcr.io\/parkervcp\/yolks:mono_latest"
} ,
"file_denylist" : [ ] ,
2020-09-13 23:42:08 +08:00
"startup" : ".\/squashfs-root\/AppRun --server Server.Name=\"{{SERVER_NAME}}\" Server.ListenPort={{SERVER_PORT}} Server.AdvertiseOnline={{PUBLIC}} Server.EnableSingleplayer={{SINGLEPLAYER}} Server.Password=\"{{PASSWORD}}\" Server.EnableGeoIP={{GEOIP}} Server.ShareAnonymizedIPs={{ANONYMOUS}}" ,
2020-09-13 18:50:49 +08:00
"config" : {
"files" : "{}" ,
2024-04-07 21:03:34 +08:00
"startup" : "{\r\n \"done\": \"Master server communication established.\"\r\n}" ,
"logs" : "{\r\n}" ,
2020-09-13 18:50:49 +08:00
"stop" : "^C"
} ,
"scripts" : {
"installation" : {
2024-04-07 21:03:34 +08:00
"script" : "#!\/bin\/bash\r\n# Vanilla Installation Script\r\n#\r\n# Server Files: \/mnt\/server\r\n## install packages to get version and download links\r\napt update\r\napt install -y curl wget file jq\r\n\r\ncd \/mnt\/server\/\r\n\r\nif [ -z \"${GITHUB_USER}\" ] && [ -z \"${GITHUB_OAUTH_TOKEN}\" ] ; then\r\n echo -e \"using anon api call\"\r\nelse\r\n echo -e \"user and oauth token set\"\r\n alias curl='curl -u ${GITHUB_USER}:${GITHUB_OAUTH_TOKEN} '\r\nfi\r\n\r\n## get release info and download links\r\nLATEST_JSON=$(curl --silent \"https:\/\/api.github.com\/repos\/OpenRA\/OpenRA\/releases\/latest\")\r\nRELEASES=$(curl --silent \"https:\/\/api.github.com\/repos\/OpenRA\/OpenRA\/releases\")\r\nMATCH=OpenRA-Tiberian-Dawn-x86_64.AppImage\r\n\r\nif [ -z \"${VERSION}\" ] || [ \"${VERSION}\" == \"latest\" ]; then\r\n DOWNLOAD_LINK=$(echo ${LATEST_JSON} | jq .assets | jq -r .[].browser_download_url | grep -i ${MATCH})\r\nelse\r\n VERSION_CHECK=$(echo ${RELEASES} | jq -r --arg VERSION \"${VERSION}\" '.[] | select(.tag_name==$VERSION) | .tag_name')\r\n if [ \"${VERSION}\" == \"${VERSION_CHECK}\" ]; then\r\n DOWNLOAD_LINK=$(echo ${RELEASES} | jq -r --arg VERSION \"${VERSION}\" '.[] | select(.tag_name==$VERSION) | .assets[].browser_download_url' | grep -i ${MATCH})\r\n else\r\n echo -e \"defaulting to latest release\"\r\n DOWNLOAD_LINK=$(echo ${LATEST_JSON} | jq .assets | jq -r .[].browser_download_url)\r\n fi\r\nfi\r\n\r\nwget $DOWNLOAD_LINK\r\n\r\n#wget https:\/\/github.com\/OpenRA\/OpenRA\/releases\/download\/release-20200503\/OpenRA-Red-Alert-x86_64.AppImage\r\nchmod +x $MATCH\r\n.\/$MATCH --appimage-extract\r\nrm $MATCH\r\nrm *.zsync\r\ncd squashfs-root\r\nchmod +x AppRun\r\n\r\n## install end\r\necho \"-----------------------------------------\"\r\necho \"Installation completed...\"\r\necho \"-----------------------------------------\"" ,
"container" : "ghcr.io\/parkervcp\/installers:debian" ,
2020-09-13 18:50:49 +08:00
"entrypoint" : "bash"
}
} ,
"variables" : [
{
"name" : "Server Name" ,
"description" : "The Name of the Server" ,
"env_variable" : "SERVER_NAME" ,
"default_value" : "OpenRAServer" ,
"user_viewable" : true ,
"user_editable" : true ,
2024-04-07 21:03:34 +08:00
"rules" : "required|string" ,
"field_type" : "text"
2020-09-13 18:50:49 +08:00
} ,
{
"name" : "Public Server" ,
"description" : "Shall this server be public" ,
"env_variable" : "PUBLIC" ,
"default_value" : "false" ,
"user_viewable" : true ,
"user_editable" : true ,
2024-04-07 21:03:34 +08:00
"rules" : "required|string" ,
"field_type" : "text"
2020-09-13 18:50:49 +08:00
} ,
{
"name" : "Enable Singleplayer" ,
"description" : "Enable Singleplayer ?" ,
"env_variable" : "SINGLEPLAYER" ,
"default_value" : "false" ,
"user_viewable" : true ,
"user_editable" : true ,
2024-04-07 21:03:34 +08:00
"rules" : "required|string" ,
"field_type" : "text"
2020-09-13 18:50:49 +08:00
} ,
{
"name" : "Require Authentification" ,
"description" : "Enable Authentification" ,
"env_variable" : "AUTH" ,
"default_value" : "false" ,
"user_viewable" : true ,
"user_editable" : true ,
2024-04-07 21:03:34 +08:00
"rules" : "required|string" ,
"field_type" : "text"
2020-09-13 18:50:49 +08:00
} ,
{
"name" : "PASSWORD" ,
"description" : "Server Password" ,
"env_variable" : "PASSWORD" ,
"default_value" : "" ,
"user_viewable" : true ,
"user_editable" : true ,
2024-04-07 21:03:34 +08:00
"rules" : "nullable:string" ,
"field_type" : "text"
2020-09-13 18:50:49 +08:00
} ,
{
"name" : "GEOIP" ,
"description" : "Enable GEOIP" ,
"env_variable" : "GEOIP" ,
"default_value" : "false" ,
"user_viewable" : true ,
"user_editable" : true ,
2024-04-07 21:03:34 +08:00
"rules" : "string|max:20" ,
"field_type" : "text"
2020-09-13 18:50:49 +08:00
} ,
{
"name" : "Anonymized IPs" ,
"description" : "Hide IPs" ,
"env_variable" : "ANONYMOUS" ,
"default_value" : "true" ,
"user_viewable" : true ,
"user_editable" : true ,
2024-04-07 21:03:34 +08:00
"rules" : "string|max:20" ,
"field_type" : "text"
2020-09-13 18:50:49 +08:00
} ,
{
"name" : "VERSION" ,
"description" : "VERSION" ,
"env_variable" : "VERSION" ,
"default_value" : "latest" ,
"user_viewable" : false ,
"user_editable" : false ,
2024-04-07 21:03:34 +08:00
"rules" : "required|string|max:20" ,
"field_type" : "text"
2020-09-13 18:50:49 +08:00
}
]
}