summarylogtreecommitdiffstats
path: root/hpfand.install
blob: 35acc498a42b3a9d9884e9634f4668c448322a0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
post_install() {
    echo "==> Enable and start hpfand:"
    echo "      systemctl enable --now hpfand"
}

post_upgrade() {
    systemctl daemon-reload
    systemctl try-restart hpfand 2>/dev/null || true
}

pre_remove() {
    systemctl disable --now hpfand 2>/dev/null || true
}