aports/testing/prometheus-ipmi-exporter/ipmi-exporter.initd
2024-10-02 19:45:34 +00:00

21 lines
413 B
Bash
Executable file

#!/sbin/openrc-run
supervisor=supervise-daemon
command="/usr/bin/ipmi_exporter"
command_args="$ARGS"
command_background="yes"
command_user="prometheus:prometheus"
logdir="/var/log/prometheus"
error_log="$logdir/${SVCNAME}.log"
pidfile="/var/run/${SVCNAME}.pid"
depend() {
need net
after firewall
}
start_pre() {
checkpath -d -o $command_user -m755 $logdir
checkpath -f -o $command_user -m644 $error_log
}