hotfix restart exit code

This commit is contained in:
kirill.labutin 2025-10-06 15:08:59 +03:00
parent e6a835d552
commit d32a54d50b
2 changed files with 4 additions and 4 deletions

View File

@ -119,7 +119,7 @@ public class App implements Context, Closeable {
.availableComponentClasses(List.of(FRR.class, OVPN.class, TDNS.class)).build())) {
Wait.when(app.running::get);
if (app.shouldRestart.get()) {
System.exit(303);
System.exit(42);
} else {
System.exit(0);
}

View File

@ -141,13 +141,13 @@ run_java() {
java -jar "$LIBRARY/$VER.pfapp" -c="$CFGPATH" -l="$LIBRARY" -r="$REPO_URL"
}
# Запускаем Java с возможностью перезапуска при коде возврата 303
# Запускаем Java с возможностью перезапуска при коде возврата 42
while true; do
run_java
EXIT_CODE=$?
if [ $EXIT_CODE -eq 303 ]; then
echo "Restarting application (exit code 303)..."
if [ $EXIT_CODE -eq 42 ]; then
echo "Restarting application (exit code 42)..."
continue
else
exit $EXIT_CODE