summarylogtreecommitdiffstats
path: root/rpms.install
blob: c15ba1481105308c999c7d57c954bf5c8f4358f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
post_install() {
    systemctl enable --now rpms.service
}

post_upgrade() {
    systemctl restart rpms.service
}

pre_remove() {
    systemctl disable --now rpms.service
}