blob: 973a0662e29cd94ace12de293d7e131599438790 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
if ! systemctl is-enabled -q cronie; then
echo
echo ">>> Enable cronie.service in order for BIT scheduling to work"
echo
fi
}
post_upgrade() {
post_install
}
|