feat: add support for unstable and pre
This commit is contained in:
		
							parent
							
								
									f2b1e50eaf
								
							
						
					
					
						commit
						3b484aba36
					
				@ -4,6 +4,8 @@
 | 
			
		||||
 | 
			
		||||
The server supports mods
 | 
			
		||||
 | 
			
		||||
Egg supports following branches for server files: [pre](http://api.vintagestory.at/pre.json), [unstable](http://api.vintagestory.at/unstable.json), [stable](http://api.vintagestory.at/stable.json)
 | 
			
		||||
 | 
			
		||||
### from the developers
 | 
			
		||||
 | 
			
		||||
Vintage Story is an uncompromising wilderness survival sandbox game inspired by lovecraftian horror themes.
 | 
			
		||||
 | 
			
		||||
@ -1,13 +1,18 @@
 | 
			
		||||
{
 | 
			
		||||
    "_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO",
 | 
			
		||||
    "meta": {
 | 
			
		||||
        "version": "PTDL_v1"
 | 
			
		||||
        "version": "PTDL_v2",
 | 
			
		||||
        "update_url": null
 | 
			
		||||
    },
 | 
			
		||||
    "exported_at": "2020-03-20T23:54:00+01:00",
 | 
			
		||||
    "name": "Vintage Story",
 | 
			
		||||
    "author": "mail@wuffy.eu",
 | 
			
		||||
    "exported_at": "2023-03-08T21:10:40+00:00",
 | 
			
		||||
    "name": "Vintage Story - Custom",
 | 
			
		||||
    "author": "kamisoi@meowstard.cat",
 | 
			
		||||
    "description": "Vintage Story is an uncompromising wilderness survival sandbox game inspired by lovecraftian horror themes. Find yourself in a ruined world reclaimed by nature and permeated by unnerving temporal disturbances. Relive the advent of human civilization, or take your own path.",
 | 
			
		||||
    "image": "quay.io\/parkervcp\/pterodactyl-images:debian_mono-6-complete",
 | 
			
		||||
    "features": null,
 | 
			
		||||
    "docker_images": {
 | 
			
		||||
        "quay.io\/parkervcp\/pterodactyl-images:debian_mono-6-complete": "quay.io\/parkervcp\/pterodactyl-images:debian_mono-6-complete"
 | 
			
		||||
    },
 | 
			
		||||
    "file_denylist": [],
 | 
			
		||||
    "startup": "mono VintagestoryServer.exe --dataPath .\/data --port={{SERVER_PORT}} --maxclients={{MAX_CLIENTS}} {{OPTIONS}}",
 | 
			
		||||
    "config": {
 | 
			
		||||
        "files": "{}",
 | 
			
		||||
@ -17,38 +22,51 @@
 | 
			
		||||
    },
 | 
			
		||||
    "scripts": {
 | 
			
		||||
        "installation": {
 | 
			
		||||
            "script": "#!\/bin\/ash\r\n# Vintage Story Installation Script\r\n#\r\n# Server Files: \/mnt\/server\r\napt update\r\napt install -y screen wget curl jq\r\n\r\n# Fetching latest stable server release\r\nif [ -z \"${RELEASE_VERSION}\" ] || [ \"${RELEASE_VERSION}\" == \"latest\" ]; then\r\n    DOWNLOAD_URL=`curl -s 'http:\/\/api.vintagestory.at\/stable.json' | jq -r '[.[]] | .[0].server.urls.cdn'`;\r\n# Use specified server release\r\nelse\r\n    DOWNLOAD_URL=https:\/\/cdn.vintagestory.at\/gamefiles\/stable\/vs_server_${RELEASE_VERSION}.tar.gz\r\nfi\r\n\r\ncd \/mnt\/server\/\r\n\r\ncurl -o vs_server.tar.gz ${DOWNLOAD_URL}\r\ntar -xzf vs_server.tar.gz\r\n\r\nrm vs_server.tar.gz",
 | 
			
		||||
            "script": "#!\/bin\/bash\r\n# Vintage Story Installation Script\r\n#\r\n# Server Files: \/mnt\/server\r\nDEBIAN_FRONTEND=noninteractive apt update\r\nDEBIAN_FRONTEND=noninteractive apt install -y screen wget curl jq\r\n\r\nBRANCH=\"${FILES_BRANCH}\"\r\n\r\n# Fetching latest stable server release\r\nif [ -z \"${RELEASE_VERSION}\" ] || [ \"${RELEASE_VERSION}\" == \"latest\" ]; then\r\n    case \"${BRANCH}\" in\r\n        \"stable\")\r\n            API_URL=\"http:\/\/api.vintagestory.at\/stable.json\"\r\n            ;;\r\n        \"unstable\")\r\n            API_URL=\"http:\/\/api.vintagestory.at\/unstable.json\"\r\n            ;;\r\n        \"pre\")\r\n            API_URL=\"http:\/\/api.vintagestory.at\/pre.json\"\r\n            ;;\r\n        *)\r\n            echo \"Invalid stage; fallback to stable\"\r\n            API_URL=\"http:\/\/api.vintagestory.at\/stable.json\"\r\n            ;;\r\n    esac\r\n    DOWNLOAD_URL=`curl -s \"$API_URL\" | jq -r 'if ([.[]] | .[0].server.urls.cdn) != null then [.[]] | .[0].server.urls.cdn else [.[]] | .[0].server.urls.local end'`;\r\n# Use specified server release\r\nelse\r\n    case \"${BRANCH}\" in\r\n    \"stable\")\r\n        DOWNLOAD_URL=https:\/\/cdn.vintagestory.at\/gamefiles\/stable\/vs_server_${RELEASE_VERSION}.tar.gz\r\n        ;;\r\n    \"unstable\")\r\n        DOWNLOAD_URL=https:\/\/account.vintagestory.at\/files\/unstable\/vs_server_${RELEASE_VERSION}.tar.gz\r\n        ;;\r\n    \"pre\")\r\n        DOWNLOAD_URL=https:\/\/cdn.vintagestory.at\/gamefiles\/pre\/vs_server_${RELEASE_VERSION}.tar.gz\r\n        ;;\r\n    *)\r\n        echo \"Invalid stage; fallback to stable\"\r\n        DOWNLOAD_URL=https:\/\/cdn.vintagestory.at\/gamefiles\/stable\/vs_server_${RELEASE_VERSION}.tar.gz\r\n        ;;\r\n    esac\r\nfi\r\n\r\ncd \/mnt\/server\/\r\n\r\ncurl -o vs_server.tar.gz ${DOWNLOAD_URL}\r\ntar -xzf vs_server.tar.gz\r\n\r\nrm vs_server.tar.gz",
 | 
			
		||||
            "container": "debian:buster-slim",
 | 
			
		||||
            "entrypoint": "bash"
 | 
			
		||||
        }
 | 
			
		||||
    },
 | 
			
		||||
    "variables": [
 | 
			
		||||
        {
 | 
			
		||||
            "name": "Start Options",
 | 
			
		||||
            "name": "Start options",
 | 
			
		||||
            "description": "",
 | 
			
		||||
            "env_variable": "OPTIONS",
 | 
			
		||||
            "default_value": "",
 | 
			
		||||
            "user_viewable": 1,
 | 
			
		||||
            "user_editable": 1,
 | 
			
		||||
            "rules": "max:200"
 | 
			
		||||
            "user_viewable": true,
 | 
			
		||||
            "user_editable": true,
 | 
			
		||||
            "rules": "max:200",
 | 
			
		||||
            "field_type": "text"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "Release branch",
 | 
			
		||||
            "description": "",
 | 
			
		||||
            "env_variable": "FILES_BRANCH",
 | 
			
		||||
            "default_value": "stable",
 | 
			
		||||
            "user_viewable": true,
 | 
			
		||||
            "user_editable": true,
 | 
			
		||||
            "rules": "required|string|in:stable,unstable,pre",
 | 
			
		||||
            "field_type": "text"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "Version",
 | 
			
		||||
            "description": "",
 | 
			
		||||
            "env_variable": "RELEASE_VERSION",
 | 
			
		||||
            "default_value": "latest",
 | 
			
		||||
            "user_viewable": 1,
 | 
			
		||||
            "user_editable": 1,
 | 
			
		||||
            "rules": "required|string|max:20"
 | 
			
		||||
            "user_viewable": true,
 | 
			
		||||
            "user_editable": true,
 | 
			
		||||
            "rules": "required|string|max:20",
 | 
			
		||||
            "field_type": "text"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "Max Clients",
 | 
			
		||||
            "description": "",
 | 
			
		||||
            "env_variable": "MAX_CLIENTS",
 | 
			
		||||
            "default_value": "16",
 | 
			
		||||
            "user_viewable": 1,
 | 
			
		||||
            "user_editable": 1,
 | 
			
		||||
            "rules": "required|integer|max:2000"
 | 
			
		||||
            "user_viewable": true,
 | 
			
		||||
            "user_editable": true,
 | 
			
		||||
            "rules": "required|integer|max:256",
 | 
			
		||||
            "field_type": "text"
 | 
			
		||||
        }
 | 
			
		||||
    ]
 | 
			
		||||
}
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user