1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
post_install() { echo "" echo "To start rbldnsd, run: systemctl start rbldnsd" echo "To enable rbldnsd at boot, run: systemctl enable rbldnsd" echo "" } post_upgrade() { systemctl daemon-reload } pre_remove() { systemctl disable --now rbldnsd }