File: postrm

package info (click to toggle)
popularity-contest 1.78
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 576 kB
  • sloc: perl: 1,266; python: 450; sh: 374; makefile: 42
file content (22 lines) | stat: -rw-r--r-- 554 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
21
22
#!/bin/sh

set -e

# purge the config file which is created in the postinst script
if [ "$1" = purge ] ; then
    rm -f /etc/popularity-contest.conf /etc/cron.d/popularity-contest
    rm -f /var/lib/popularity-contest/lastsub
    if [ -d /var/lib/popularity-contest ] ; then
        rmdir --ignore-fail-on-non-empty /var/lib/popularity-contest
    fi
fi

if [ "$1" = "purge" ] && [ -e /usr/share/debconf/confmodule ]; then
    # Source debconf library.
    . /usr/share/debconf/confmodule
    # Remove my changes to the db.
    db_purge
fi

#DEBHELPER#