summarylogtreecommitdiffstats
path: root/adguardhome.install
blob: 19ea58245b248b66c68ac0b29949c02338e5e577 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

post_upgrade() {
  # show config hint for upgrading from <= 1:0.107.26-1
  if [ $(vercmp "${2}" "1:0.107.27-1") -eq -1 ]; then
    echo ":: AdGuardHome is now configured in /etc/adguardhome.yaml"
    echo "   The old configuration file /etc/default/adguardhome does not work anymore."
    echo "   Please check your setup if you used a different config file location or method."
  fi
}