18 lines
461 B
Text
18 lines
461 B
Text
|
#!/sbin/openrc-run
|
||
|
|
||
|
name=$RC_SVCNAME
|
||
|
cfgfile="/etc/qubes/$RC_SVCNAME.conf"
|
||
|
pidfile="/var/run/meminfo-writer.pid"
|
||
|
command="/sbin/meminfo-writer"
|
||
|
command_args="30000 100000 $pidfile"
|
||
|
command_user="root"
|
||
|
start_stop_daemon_args=""
|
||
|
command_background="yes"
|
||
|
output_log="/var/log/qubes/$RC_SVCNAME.log"
|
||
|
error_log="/var/log/qubes/$RC_SVCNAME.err"
|
||
|
|
||
|
start_pre() {
|
||
|
checkpath --directory --owner $command_user:qubes --mode 0775 \
|
||
|
/var/log/qubes
|
||
|
}
|