File: xml-core.postrm

package info (click to toggle)
xml-core 0.13%2Bnmu2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 216 kB
  • ctags: 29
  • sloc: perl: 557; makefile: 161; sh: 46; xml: 10
file content (42 lines) | stat: -rw-r--r-- 1,428 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
37
38
39
40
41
42
#!/bin/sh
## ----------------------------------------------------------------------
## debian/postrm : postremoval script for xml-core
## ----------------------------------------------------------------------

## ----------------------------------------------------------------------
set -e

## ---------------------------------------------------------------------- 
## automatically generated debhelper commands
#DEBHELPER#

## ----------------------------------------------------------------------
if [ "$1" = "purge" ]
then

    ## ------------------------------------------------------------------
    ## remove /var/lib/xml-core
    [ -d /var/lib/xml-core ] && rmdir --ignore-fail-on-non-empty /var/lib/xml-core

    ## ------------------------------------------------------------------
    ## remove root XML catalog
    rm -f /etc/xml/catalog
    rm -f /etc/xml/catalog.old

    ## ------------------------------------------------------------------
    ## remove /etc/xml
    [ -d /var/lib/xml-core ] && rmdir --ignore-fail-on-non-empty /etc/xml

    ## ------------------------------------------------------------------
    ## restore legacy /etc/xml/catalog
    if [ -f /etc/xml/catalog.legacy ]
    then
	mv /etc/xml/catalog.legacy /etc/xml/catalog
    fi

fi

## ---------------------------------------------------------------------- 
exit 0

## ----------------------------------------------------------------------