update for the fivem installer
I have added a required variable for the fivem version This is needed to pull the correct version of fivem from the artifact repo.
This commit is contained in:
		
							parent
							
								
									11bddcb592
								
							
						
					
					
						commit
						61b73bb701
					
				@ -3,7 +3,7 @@
 | 
				
			|||||||
    "meta": {
 | 
					    "meta": {
 | 
				
			||||||
        "version": "PTDL_v1"
 | 
					        "version": "PTDL_v1"
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    "exported_at": "2019-02-20T16:46:04-05:00",
 | 
					    "exported_at": "2019-07-12T16:32:34-04:00",
 | 
				
			||||||
    "name": "FiveM",
 | 
					    "name": "FiveM",
 | 
				
			||||||
    "author": "parker@parkervcp.com",
 | 
					    "author": "parker@parkervcp.com",
 | 
				
			||||||
    "description": "A new FiveM egg for the latest builds due to recent changes in FiveM",
 | 
					    "description": "A new FiveM egg for the latest builds due to recent changes in FiveM",
 | 
				
			||||||
@ -17,7 +17,7 @@
 | 
				
			|||||||
    },
 | 
					    },
 | 
				
			||||||
    "scripts": {
 | 
					    "scripts": {
 | 
				
			||||||
        "installation": {
 | 
					        "installation": {
 | 
				
			||||||
            "script": "#!\/bin\/ash \r\n\r\napk add openssl tar xz curl wget git --no-cache\r\n\r\ncd \/mnt\/server\r\n\r\nmkdir resources\r\n\r\necho \"updating citizenfx resource files\"\r\ngit clone https:\/\/github.com\/citizenfx\/cfx-server-data.git \/tmp\r\ncp -Rf \/tmp\/resources\/* resources\/ \r\n\r\ncd \/mnt\/server\r\n\r\necho \"Downloading the latest fivem server files\"\r\nlatest_fivem_url=`curl https:\/\/runtime.fivem.net\/artifacts\/fivem\/build_proot_linux\/master\/ | grep -Eo 'href=\".*\/\"' | grep -Eo '\".*\"' | grep -Eo 'href=\".*\/\"' | grep -Eo '\".*\"' | sed 's\/\\\"\/\/g'`\r\n\r\necho -e \"pulling files from https:\/\/runtime.fivem.net\/artifacts\/fivem\/build_proot_linux\/master\/${latest_fivem_url}fx.tar.xz\"\r\nwget https:\/\/runtime.fivem.net\/artifacts\/fivem\/build_proot_linux\/master\/${latest_fivem_url}fx.tar.xz\r\n\r\necho \"Extracting fivem files\"\r\n\r\ntar xf fx.tar.xz\r\n\r\nrm -rf fx.tar.xz run.sh\r\n\r\nif [ -e server.cfg ]; then\r\n    echo \"server config file exists\"\r\nelse\r\n    echo \"Downloading default fivem config\"\r\n    curl https:\/\/raw.githubusercontent.com\/parkervcp\/eggs\/master\/gta\/fivem\/server.cfg >> server.cfg\r\nfi\r\n\r\nmkdir logs\/\r\n\r\necho \"install complete\"",
 | 
					            "script": "#!\/bin\/ash \r\n\r\napk add openssl tar xz curl wget git --no-cache\r\n\r\ncd \/mnt\/server\r\n\r\nmkdir resources\r\n\r\necho \"updating citizenfx resource files\"\r\ngit clone https:\/\/github.com\/citizenfx\/cfx-server-data.git \/tmp\r\ncp -Rf \/tmp\/resources\/* resources\/ \r\n\r\ncd \/mnt\/server\r\n\r\necho -e \"pulling files from https:\/\/runtime.fivem.net\/artifacts\/fivem\/build_proot_linux\/master\/${latest_fivem_url}fx.tar.xz\"\r\nwget https:\/\/runtime.fivem.net\/artifacts\/fivem\/build_proot_linux\/master\/${FIVEM_VERSION}fx.tar.xz\r\n\r\necho \"Extracting fivem files\"\r\n\r\ntar xf fx.tar.xz\r\n\r\nrm -rf fx.tar.xz run.sh\r\n\r\nif [ -e server.cfg ]; then\r\n    echo \"server config file exists\"\r\nelse\r\n    echo \"Downloading default fivem config\"\r\n    curl https:\/\/raw.githubusercontent.com\/parkervcp\/eggs\/master\/gta\/fivem\/server.cfg >> server.cfg\r\nfi\r\n\r\nmkdir logs\/\r\n\r\necho \"install complete\"",
 | 
				
			||||||
            "container": "alpine:3.9",
 | 
					            "container": "alpine:3.9",
 | 
				
			||||||
            "entrypoint": "ash"
 | 
					            "entrypoint": "ash"
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
@ -36,10 +36,10 @@
 | 
				
			|||||||
            "name": "Max Players",
 | 
					            "name": "Max Players",
 | 
				
			||||||
            "description": "Set the fivem max play count",
 | 
					            "description": "Set the fivem max play count",
 | 
				
			||||||
            "env_variable": "MAX_PLAYERS",
 | 
					            "env_variable": "MAX_PLAYERS",
 | 
				
			||||||
            "default_value": "32",
 | 
					            "default_value": "30",
 | 
				
			||||||
            "user_viewable": 1,
 | 
					            "user_viewable": 1,
 | 
				
			||||||
            "user_editable": 0,
 | 
					            "user_editable": 0,
 | 
				
			||||||
            "rules": "required|integer|between:1,32"
 | 
					            "rules": "required|integer|between:1,31"
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            "name": "Server Hostname",
 | 
					            "name": "Server Hostname",
 | 
				
			||||||
@ -49,6 +49,15 @@
 | 
				
			|||||||
            "user_viewable": 1,
 | 
					            "user_viewable": 1,
 | 
				
			||||||
            "user_editable": 1,
 | 
					            "user_editable": 1,
 | 
				
			||||||
            "rules": "required|string"
 | 
					            "rules": "required|string"
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "name": "fivem version",
 | 
				
			||||||
 | 
					            "description": "The fivem version that is to be installed.\r\n\r\nan example is `1383-e5ea040353ce1b8bc86e37982bf5d888938e3096`\r\n\r\nYou can the latest version from here - https:\/\/runtime.fivem.net\/artifacts\/fivem\/build_proot_linux\/master\/",
 | 
				
			||||||
 | 
					            "env_variable": "FIVEM_VERSION",
 | 
				
			||||||
 | 
					            "default_value": "",
 | 
				
			||||||
 | 
					            "user_viewable": 1,
 | 
				
			||||||
 | 
					            "user_editable": 0,
 | 
				
			||||||
 | 
					            "rules": "required|string|max:50"
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    ]
 | 
					    ]
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user