~dricottone/huttese-apk

ref: 3e6fa8548e075fea95f5b6c6e649934c13cbaa4e huttese-apk/prometheus/alertmanager/alertmanager.initd -rw-r--r-- 604 bytes
3e6fa854 — Drew DeVault sr.ht/py3-editor: bump pkgrel 4 years ago
                                                                                
06c053e6 Drew DeVault
3312d494 Drew DeVault
81d9b5e2 Drew DeVault
3312d494 Drew DeVault
06c053e6 Drew DeVault
3312d494 Drew DeVault
34681b55 Drew DeVault
3312d494 Drew DeVault
06c053e6 Drew DeVault
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/sbin/openrc-run
name="alertmanager"
description="alert manager for the prometheus monitoring system"
supervisor=supervise-daemon
supervise_daemon_args="-1 /var/log/alertmanager.log -2 /var/log/alertmanager.log"
command=/usr/bin/alertmanager
command_args="--config.file=$config_file \
	--storage.path=$storage_path"
command_user="prometheus:prometheus"
pidfile="/run/${RC_SVCNAME}.pid"

start_pre() {
	checkpath -f "/var/log/alertmanager.initd" -m 644 -o prometheus:prometheus
	checkpath -f "$config_file" -m 740 -o prometheus:prometheus
	checkpath -d "$storage_path" -m 755 -o prometheus:prometheus
}