Add init script for openwrt. (#8)

This commit is contained in:
Tom Wilkie 2020-10-11 18:18:38 +01:00 committed by GitHub
parent d5b74a1f9b
commit 4a335b2532
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,16 @@
#!/bin/sh /etc/rc.common
START=99
USE_PROCD=1
PROG="/usr/bin/dnsmasq_exporter"
LEASES_PATH="/tmp/dhcp.leases"
LISTEN_ADDR=":9153"
start_service() {
procd_open_instance
procd_set_param command "$PROG" "-leases_path=${LEASES_PATH}" "-listen=${LISTEN_ADDR}"
procd_set_param stdout 1 # forward stdout of the command to logd
procd_set_param stderr 1 # same for stderr
procd_close_instance
}