mirror of
https://gitlab.alpinelinux.org/alpine/abuild.git
synced 2024-12-22 15:02:59 +00:00
17 lines
270 B
Plaintext
17 lines
270 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
# Sample init.d file for alpine linux.
|
|
|
|
name=
|
|
command="/usr/sbin/$name"
|
|
command_args="$sample_opts"
|
|
command_background="yes"
|
|
|
|
start_stop_daemon_args="--user $sample_user:$sample_group"
|
|
pidfile="/run/$name.pid"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|