]>
Commit | Line | Data |
---|---|---|
6ccbc38a | 1 | #!/sbin/openrc-run |
2 | ||
3 | # Sample init.d file for alpine linux. | |
4 | ||
5 | name= | |
6 | command="/usr/sbin/$name" | |
7 | command_args="$sample_opts" | |
8 | command_background="yes" | |
9 | ||
10 | start_stop_daemon_args="--user $sample_user:$sample_group" | |
11 | pidfile="/run/$name.pid" | |
12 | ||
13 | depend() { | |
14 | need net | |
15 | after firewall | |
16 | } |