dpkg.postrm 86 B

1234567891011
  1. #!/bin/sh
  2. set -e
  3. if [ "$1" = "purge" ] ; then
  4. rm -f /etc/dpkg/dpkg.cfg
  5. fi
  6. exit 0