~dricottone/huttese-apk

ref: b480f66f9fb93992178bd7a85d0c926731d047cb huttese-apk/sr.ht/prometheus/prometheus.initd -rw-r--r-- 813 bytes
b480f66f — Drew DeVault prometheus: add reload to extra_started_commands 4 years ago
                                                                                
fe42a2f7 Drew DeVault
9777accf Drew DeVault
fe42a2f7 Drew DeVault
3b9a1d9b Drew DeVault
b480f66f Drew DeVault
fe42a2f7 Drew DeVault
9777accf Drew DeVault
fe42a2f7 Drew DeVault
4e02f3cd Drew DeVault
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/sbin/openrc-run
name="prometheus"
description="prometheus monitoring system & time series database"
supervisor=supervise-daemon
command=/usr/bin/prometheus
command_args="--config.file=$prometheus_config_file \
	--storage.tsdb.path=$prometheus_storage_path \
	--storage.tsdb.retention.time=$prometheus_retention_time"
command_user="prometheus:prometheus"
pidfile="/run/${RC_SVCNAME}.pid"
extra_started_commands="reload"

start_pre() {
	[ -n "$output_log" ] && checkpath -f "$output_log" \
		-m 644 -o prometheus:prometheus
	[ -n "$error_log" ] && checkpath -f "$error_log" \
		-m 644 -o prometheus:prometheus
	checkpath -d "$prometheus_storage_path" -m 755 -o prometheus:prometheus
}

reload() {
	ebegin "Reloading $RC_SERVNAME"
	start-stop-daemon --signal HUP --exec "$command" --pidfile "$pidfile"
	eend $?
}