aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/linux-status.install
blob: 7d4e216aa06c4fd4119ca286fd204bfdfabc9ea2 (plain) (tree)
1
2
3
4
5
6
7
8
9

                    

                                    

                                                


              

                                                 









                                    
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"
}