~dricottone/huttese-apk

ref: 54f29d8b99cc6926a473c2f9f3a7eaf3d2d33a99 huttese-apk/prometheus/prometheus-node-exporter/prometheus-node-exporter.initd -rw-r--r-- 547 bytes
54f29d8b — Drew DeVault Fix broken OpenRC files in lists.sr.ht APKBUILD 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 $?
}