mirror of
https://github.com/YuzuZensai/palworld-server-docker.git
synced 2026-01-06 04:32:43 +00:00
14 lines
299 B
Bash
14 lines
299 B
Bash
#!/bin/sh
|
|
|
|
mkdir -p /palworld
|
|
|
|
chown -R steam:steam /palworld
|
|
|
|
if [ "${UPDATE_ON_BOOT}" = true ]; then
|
|
|
|
printf "\e[0;32m*****STARTING INSTALL/UPDATE*****\e[0m"
|
|
/home/steam/steamcmd/steamcmd.sh +force_install_dir "/palworld" +login anonymous +app_update 2394010 validate +quit
|
|
|
|
fi
|
|
|
|
./start.sh |