blob: ac13d8c7cc335b03308e75a977667db7b6f3c180 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/sbin/openrc-run thisdir="$(dirname "$(readlink -f "$1")")" supervisor=supervise-daemon respawn_delay=3 respawn_max=2 respawn_period=10 description="Media Control" command="raku media-control.raku" pidfile="${thisdir}/media-control.pid" command_user=dakkar output_log="${thisdir}/log.out" error_log="${thisdir}/log.err" directory="$thisdir" name="media-control" procname="raku" depend() { need localmount net after bootmisc }
|