~dricottone/huttese-apk

ref: 66d909470035c3c2b283c881a28bc3f5936e526e huttese-apk/prometheus/prometheus-node-exporter/prometheus-node-exporter.initd -rw-r--r-- 462 bytes
66d90947 — Drew DeVault Fuck it, abuilds doesn't handle this right anyway 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/sbin/openrc-run
name="prometheus-node-exporter"
description="prometheus node exporter"

depend() {
	need net
}

start() {
	ebegin "Starting $name"
	start-stop-daemon -C --background --make-pidfile --pidfile /run/$name.pid \
		--exec /usr/bin/prometheus_node_exporter -- \
		--web.listen-address=127.0.0.1:9100
	eend $?
}

stop() {
	ebegin "Stopping $name"
	start-stop-daemon --stop --exec /usr/bin/prometheus-node-exporter --pidfile /run/$name.pid
	eend $?
}