summarylogtreecommitdiffstats
path: root/timeshift-install.sh
blob: bc3bd2167015c605ac3f7595104f6c4fd7578824 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
post_upgrade() {
  set -u
  if ! systemctl -q is-enabled 'cronie.service'; then
    echo 'TimeShift automatic backups require the cronie.service to be running.'
    echo 'Try:'
    echo '  systemctl enable --now cronie.service'
  fi
  set +u
}

post_install() {
  post_upgrade
}