mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 03:35:38 +03:00
14 lines
200 B
Text
14 lines
200 B
Text
#!/sbin/openrc-run
|
|
|
|
name="k3s"
|
|
command="/usr/bin/k3s"
|
|
command_args="$K3S_OPTS"
|
|
command_background="yes"
|
|
|
|
start_stop_daemon_args="server"
|
|
pidfile="/run/k3s.pid"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|