blob: 06db6abffc22f5baf55f22215d982069ada7d081 (
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 Back In Time scheduling to work"
echo
fi
}
post_upgrade() {
post_install
}
|