summarylogtreecommitdiffstats
path: root/ureminder.install
blob: 3371d4d6387086ec90497e67c00c219f537b53cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
post_install() {
	systemctl enable --now ureminder.timer
}

pre_upgrade() {
	systemctl disable --now ureminder.timer
}

post_upgrade() {
	systemctl enable --now ureminder.timer
}

pre_remove() {
	systemctl disable --now ureminder.timer
}