diff --git a/README.md b/README.md index 39af2a7..da4975e 100644 --- a/README.md +++ b/README.md @@ -186,6 +186,10 @@ again. If you want to keep the current savegame, make sure to make a backup befo ```bash docker compose exec enshrouded supervisorctl start enshrouded-reset-roles ``` +* **Restart Enshrouded Server:** (can be used for periodic restarts) + ```bash + docker compose exec enshrouded supervisorctl restart enshrouded-server + ``` ## Known Issues @@ -193,5 +197,5 @@ again. If you want to keep the current savegame, make sure to make a backup befo ``` Error! App '2278520' state is 0x202 after update job. ``` - This means there is probably something wrong with your file permissions. Make sure the UID and GID are correct and the - files are owned by the correct user. + This means there is probably something wrong with your file permissions, or you don't have enough disk space left. + Make sure the UID and GID are correct and the files are owned by the correct user. diff --git a/scripts/proton/enshrouded-bootstrap b/scripts/proton/enshrouded-bootstrap index 61efa46..ba28aa2 100644 --- a/scripts/proton/enshrouded-bootstrap +++ b/scripts/proton/enshrouded-bootstrap @@ -8,11 +8,11 @@ main() { prepareEnshroudedAppFolders updateOrCreateEnshroudedServerConfig prepareSteamA2sPythonLibrary - bootstrapHook # no proton bootstrap needed initCrontab + bootstrapHook supervisorctl start enshrouded-updater info "Bootstrap complete" } diff --git a/scripts/wine/enshrouded-bootstrap b/scripts/wine/enshrouded-bootstrap index daa79f9..d23f144 100644 --- a/scripts/wine/enshrouded-bootstrap +++ b/scripts/wine/enshrouded-bootstrap @@ -8,11 +8,11 @@ main() { prepareEnshroudedAppFolders updateOrCreateEnshroudedServerConfig prepareSteamA2sPythonLibrary - bootstrapHook bootstrapWine initCrontab + bootstrapHook supervisorctl start enshrouded-updater info "Bootstrap complete" }