blob: ed47472c7763164eb06eb9d716422e64f757a2ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
pkgname=ttop
post_install() {
systemctl daemon-reload
systemctl start "${pkgname}.timer"
}
pre_remove() {
systemctl stop "${pkgname}.timer"
}
post_remove() {
systemctl daemon-reload
}
|