summarylogtreecommitdiffstats
path: root/prometheus.install
blob: 31c8505245cb6ec8af8d041ebf477db19b5049c2 (plain)
1
2
3
4
5
6
7
8
9
post_install() {
	id prometheus 2>/dev/null || useradd -r -U -M -s /bin/false prometheus
	mkdir -p "/var/lib/prometheus"
	chown prometheus.prometheus /var/lib/prometheus
}

post_remove() {
	userdel prometheus
}