blob: 7d4e216aa06c4fd4119ca286fd204bfdfabc9ea2 (
plain) (
tree)
|
|
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"
}
|