20 lines
358 B
Text
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 $?
|
|
}
|