File: hylafax-client.postrm

package info (click to toggle)
hylafax 3%3A6.0.7-11.1
  • links: PTS
  • area: main
  • in suites: trixie
  • size: 10,844 kB
  • sloc: sh: 15,305; ansic: 14,429; makefile: 1,562; cpp: 781; awk: 529
file content (13 lines) | stat: -rw-r--r-- 328 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh -e

#DEBHELPER#

if [ "$1" = "purge" ]; then
    [ -d /etc/hylafax ] && rm -f /etc/hylafax/pagesizes

    # clear and deregister config file out from ucf database
    which ucf >/dev/null && ucf --purge /etc/hylafax/pagesizes
    which ucfr >/dev/null && ucfr --purge hylafax-client /etc/hylafax/pagesizes
fi

exit 0