pterodactyl-panel-compose/pterodactyl-panel-compose.initd.in
2024-11-09 21:25:41 +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="-f %COMPOSEPATH% up -d"
command_user="pterodactyl"
depend() {
after podman
need podman
}
stop() {
ebegin "Stopping $RC_SVCNAME"
/usr/bin/podman-compose -f %COMPOSEPATH% down
eend $?
}