blob: 7d4e216aa06c4fd4119ca286fd204bfdfabc9ea2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
pkgname=linux-status
post_install() {
systemctl --system daemon-reload
systemctl --system enable "$pkgname.service"
systemctl --system start "$pkgname.service"
}
pre_remove() {
systemctl --system stop "$pkgname.service"
systemctl --system disable "$pkgname.service"
systemctl --system daemon-reload
}
pre_upgrade() {
pre_remove "$1"
}
post_upgrade() {
post_install "$1"
}
|