~dricottone/huttese-apk

ref: 52f3b39756eaa45fd74c1919d6fc3abd15162fc0 huttese-apk/prometheus/prometheus-node-exporter/prometheus-node-exporter.initd -rw-r--r-- 462 bytes
52f3b397 — Drew DeVault Add --loglevel=info to lists.sr.ht-process 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 $?
}