File: dbab.postrm

package info (click to toggle)
dbab 1.5.01-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 192 kB
  • sloc: sh: 225; perl: 79; makefile: 45
file content (20 lines) | stat: -rw-r--r-- 387 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#! /bin/sh
# postinst script for dbab
#
# see: dh_installdeb(1)

set -e

# http://www.debian.org/doc/debian-policy/ch-opersys.html#s9.3.3.1
if [ "$1" = purge ]; then
  update-rc.d -f dbab remove > /dev/null
  rm -f /etc/dnsmasq.d/dbab.* > /dev/null || true
fi

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0