File: connman.postrm

package info (click to toggle)
connman 1.45-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,056 kB
  • sloc: ansic: 101,490; sh: 4,985; python: 2,256; makefile: 488
file content (36 lines) | stat: -rw-r--r-- 700 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/sh
# postrm script for #PACKAGE#
#
# see: dh_installdeb(1)

set -e


# only remove state dir if purge
# only remove the link if it points to /run/connman/resolv.conf
case "$1" in
    purge)
        [ -d /var/lib/connman ] && rm -rf /var/lib/connman
        if [ "$(readlink /etc/resolv.conf | grep connman)" ]; then
            rm -f /etc/resolv.conf
        fi
    ;;

    remove)
        if [ "$(readlink /etc/resolv.conf | grep connman)" ]; then
            rm -f /etc/resolv.conf
        fi
    ;;

    upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
    ;;

    *)
        echo "postrm called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

#DEBHELPER#

exit 0