diff --git a/pterodactyl-panel-compose.initd.in b/pterodactyl-panel-compose.initd.in index da5468b..2a7a38f 100644 --- a/pterodactyl-panel-compose.initd.in +++ b/pterodactyl-panel-compose.initd.in @@ -5,7 +5,7 @@ description="Pterodactyl Panel Containerized" supervisor="supervise-daemon" command="/usr/bin/podman-compose" -command_args="up -f %COMPOSEPATH% -d" +command_args="-f %COMPOSEPATH% up -d" command_user="pterodactyl" depend() { @@ -15,6 +15,6 @@ depend() { stop() { ebegin "Stopping $RC_SVCNAME" - /usr/bin/podman-compose down -f %COMPOSEPATH% + /usr/bin/podman-compose -f %COMPOSEPATH% down eend $? }