pterodactyl-panel-compose/pterodactyl-panel-compose.initd.in
2024-11-06 21:43:50 +01:00

20 lines
358 B
Text

#!/sbin/openrc-run
name=$RC_SVCNAME
description="Pterodactyl Panel Containerized"
supervisor="supervise-daemon"
command="/usr/bin/podman-compose"
command_args="up -f %COMPOSEPATH% -d"
command_user="pterodactyl"
depend() {
after podman
need podman
}
stop() {
ebegin "Stopping $RC_SVCNAME"
/usr/bin/podman-compose down -f %COMPOSEPATH%
eend $?
}