mirror of
				https://github.com/pelican-eggs/eggs.git
				synced 2025-11-04 10:58:06 +00:00 
			
		
		
		
	Merge pull request #1999 from parkervcp/icarus-hotfix
icarus hotfix for config
This commit is contained in:
		
						commit
						39740b2b59
					
				@ -4,7 +4,7 @@
 | 
			
		||||
        "version": "PTDL_v2",
 | 
			
		||||
        "update_url": null
 | 
			
		||||
    },
 | 
			
		||||
    "exported_at": "2022-12-09T16:28:51+01:00",
 | 
			
		||||
    "exported_at": "2022-12-10T14:40:39+01:00",
 | 
			
		||||
    "name": "Icarus-Dedicated",
 | 
			
		||||
    "author": "bolverblitz@ebg.pw",
 | 
			
		||||
    "description": "Icarus is a survival game that with dedicated servers as a public beta",
 | 
			
		||||
@ -12,8 +12,7 @@
 | 
			
		||||
        "steam_disk_space"
 | 
			
		||||
    ],
 | 
			
		||||
    "docker_images": {
 | 
			
		||||
        "Staging": "ghcr.io\/parkervcp\/yolks:wine_staging",
 | 
			
		||||
        "Latest": "ghcr.io\/parkervcp\/yolks:wine_latest"
 | 
			
		||||
        "Wine Staging": "ghcr.io\/parkervcp\/yolks:wine_staging"
 | 
			
		||||
    },
 | 
			
		||||
    "file_denylist": [],
 | 
			
		||||
    "startup": "wine64 .\/Icarus\/Binaries\/Win64\/IcarusServer-Win64-Shipping.exe -Log -SteamServerName=${SERVER_NAME} -PORT=\"${SERVER_PORT}\" -QueryPort=\"${QUERY_PORT}\"",
 | 
			
		||||
@ -25,7 +24,7 @@
 | 
			
		||||
    },
 | 
			
		||||
    "scripts": {
 | 
			
		||||
        "installation": {
 | 
			
		||||
            "script": "#!\/bin\/bash\r\n\r\n## License: MIT License\r\n## Image to install with is 'ghcr.io\/parkervcp\/installers:debian'\r\n\r\n# Download and install SteamCMD\r\nexport HOME=\/mnt\/server\r\ncd \/tmp\r\nmkdir -p $HOME\/steamcmd $HOME\/steamapps\r\ncurl -sSL -o steamcmd.tar.gz https:\/\/steamcdn-a.akamaihd.net\/client\/installer\/steamcmd_linux.tar.gz\r\ntar -xzvf steamcmd.tar.gz -C $HOME\/steamcmd\r\ncd $HOME\/steamcmd\r\n\r\n# SteamCMD fails otherwise for some reason, even running as root.\r\n# This is changed at the end of the install process anyways.\r\nchown -R root:root \/mnt\r\n\r\n# Install game server using SteamCMD\r\n.\/steamcmd.sh +force_install_dir $HOME +login anonymous $( [[ \"${WINDOWS_INSTALL}\" == \"1\" ]] && printf %s '+@sSteamCmdForcePlatformType windows' ) +app_update \"${SRCDS_APPID}\" validate +quit\r\n\r\n# Set up 32 and 64 bit libraries\r\nmkdir -p $HOME\/.steam\/sdk{32,64}\r\ncp -v linux32\/steamclient.so $HOME\/.steam\/sdk32\/steamclient.so\r\ncp -v linux64\/steamclient.so $HOME\/.steam\/sdk64\/steamclient.so\r\n\r\n## install end\r\necho \"-----------------------------------------\"\r\necho \"Installation completed...\"\r\necho \"-----------------------------------------\"",
 | 
			
		||||
            "script": "#!\/bin\/bash\r\n\r\n## License: MIT License\r\n## Image to install with is 'ghcr.io\/parkervcp\/installers:debian'\r\n\r\nif [[ \"${STEAM_USER}\" == \"\" ]] || [[ \"${STEAM_PASS}\" == \"\" ]]; then\r\n    echo -e \"steam user is not set.\\n\"\r\n    echo -e \"Using anonymous user.\\n\"\r\n    STEAM_USER=anonymous\r\n    STEAM_PASS=\"\"\r\n    STEAM_AUTH=\"\"\r\nelse\r\n    echo -e \"user set to ${STEAM_USER}\"\r\nfi\r\n\r\n## download and install steamcmd\r\ncd \/tmp\r\nmkdir -p \/mnt\/server\/steamcmd\r\ncurl -sSL -o steamcmd.tar.gz https:\/\/steamcdn-a.akamaihd.net\/client\/installer\/steamcmd_linux.tar.gz\r\ntar -xzvf steamcmd.tar.gz -C \/mnt\/server\/steamcmd\r\nmkdir -p \/mnt\/server\/steamapps # Fix steamcmd disk write error when this folder is missing\r\ncd \/mnt\/server\/steamcmd\r\n\r\n# SteamCMD fails otherwise for some reason, even running as root.\r\n# This is changed at the end of the install process anyways.\r\nchown -R root:root \/mnt\r\nexport HOME=\/mnt\/server\r\n\r\n## install game using steamcmd\r\n.\/steamcmd.sh +force_install_dir \/mnt\/server +login ${STEAM_USER} ${STEAM_PASS} ${STEAM_AUTH} $( [[ \"${WINDOWS_INSTALL}\" == \"1\" ]] && printf %s '+@sSteamCmdForcePlatformType windows' ) +app_update ${SRCDS_APPID} validate +quit\r\n\r\n## set up 32 bit libraries\r\nmkdir -p \/mnt\/server\/.steam\/sdk32\r\ncp -v linux32\/steamclient.so ..\/.steam\/sdk32\/steamclient.so\r\n\r\n## set up 64 bit libraries\r\nmkdir -p \/mnt\/server\/.steam\/sdk64\r\ncp -v linux64\/steamclient.so ..\/.steam\/sdk64\/steamclient.so\r\n\r\nFILE=\/mnt\/server\/Icarus\/Saved\/Config\/ServerSettings.ini\r\nif [ -f \"$FILE\" ]; then\r\n    echo \"Config already exist skipping\"\r\nelse \r\n    echo \"Config does not yet exist, making one\"\r\n    mkdir -p \/mnt\/server\/Icarus\/Saved\/Config\/\r\n    cd \/mnt\/server\/Icarus\/Saved\/Config\/\r\n    curl -sSL -o ServerSettings.ini https:\/\/raw.githubusercontent.com\/RocketWerkz\/IcarusDedicatedServer\/main\/ServerSettings.ini\r\nfi\r\n\r\n## install end\r\necho \"-----------------------------------------\"\r\necho \"Installation completed...\"\r\necho \"-----------------------------------------\"",
 | 
			
		||||
            "container": "ghcr.io\/pterodactyl\/installers:debian",
 | 
			
		||||
            "entrypoint": "\/bin\/bash"
 | 
			
		||||
        }
 | 
			
		||||
@ -65,10 +64,10 @@
 | 
			
		||||
            "name": "WINETRICKS_RUN",
 | 
			
		||||
            "description": "Run installs on software that is required by the server",
 | 
			
		||||
            "env_variable": "WINETRICKS_RUN",
 | 
			
		||||
            "default_value": "vcrun2019",
 | 
			
		||||
            "default_value": "vcrun2019 corefonts",
 | 
			
		||||
            "user_viewable": false,
 | 
			
		||||
            "user_editable": false,
 | 
			
		||||
            "rules": "required|string|in:vcrun2019",
 | 
			
		||||
            "rules": "required|string|in:vcrun2019 corefonts",
 | 
			
		||||
            "field_type": "text"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
@ -90,6 +89,36 @@
 | 
			
		||||
            "user_editable": true,
 | 
			
		||||
            "rules": "required|boolean",
 | 
			
		||||
            "field_type": "text"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "WINEDEBUG",
 | 
			
		||||
            "description": "",
 | 
			
		||||
            "env_variable": "WINEDEBUG",
 | 
			
		||||
            "default_value": "-all",
 | 
			
		||||
            "user_viewable": false,
 | 
			
		||||
            "user_editable": false,
 | 
			
		||||
            "rules": "required|string|max:20",
 | 
			
		||||
            "field_type": "text"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "WINEPATH",
 | 
			
		||||
            "description": "",
 | 
			
		||||
            "env_variable": "WINEPATH",
 | 
			
		||||
            "default_value": "\/home\/container",
 | 
			
		||||
            "user_viewable": false,
 | 
			
		||||
            "user_editable": false,
 | 
			
		||||
            "rules": "required|string|max:20",
 | 
			
		||||
            "field_type": "text"
 | 
			
		||||
        },
 | 
			
		||||
        {
 | 
			
		||||
            "name": "WINEARCH",
 | 
			
		||||
            "description": "",
 | 
			
		||||
            "env_variable": "WINEARCH",
 | 
			
		||||
            "default_value": "win64",
 | 
			
		||||
            "user_viewable": false,
 | 
			
		||||
            "user_editable": false,
 | 
			
		||||
            "rules": "required|string|in:win64",
 | 
			
		||||
            "field_type": "text"
 | 
			
		||||
        }
 | 
			
		||||
    ]
 | 
			
		||||
}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user