summaryrefslogtreecommitdiff
path: root/community/fcron/fcron.install
blob: f7b0abddf77700f9c7d3cdf77322370191570ebd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# arg 1:  the new package version
post_install() {
  # Generate binary format which is incompatible between arch
  fcrontab -z -u systab &>/dev/null
}

# arg 1:  the new package version
# arg 2:  the old package version
post_upgrade() {
  post_install "$1"
}

# vim:set ts=2 sw=2 et: