summarylogtreecommitdiffstats
path: root/pi-hole-web.install
blob: 9e43840daeb1ca201134acd0c584669d1b63a57a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
post_install() {
  /bin/true
}

post_upgrade() {
  # /etc/pihole/versions file generation
  [ -f /opt/pihole/updatecheck.sh ] && sudo -u pihole bash /opt/pihole/updatecheck.sh;

  # keep pacman from throwing errors should none them be on the filesystem
  return 0
}

post_remove() {
  /bin/true
}