File: doc-linux-it-text.postinst

package info (click to toggle)
doc-linux-it 2003.12-1.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, squeeze
  • size: 6,592 kB
  • ctags: 10
  • sloc: perl: 87; makefile: 61; sh: 59
file content (14 lines) | stat: -rw-r--r-- 364 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh -e

if [ "$1" = "configure" ]; then
        if [ -d /usr/doc -a -h /usr/doc/doc-linux-it-text -a -d /usr/share/doc/doc-linux-it-text ]; then
                rm -f /usr/doc/doc-linux-it-text
        fi
        if [ -d /usr/doc -a -h /usr/doc/HOWTO -a -d /usr/share/doc/HOWTO ]; then
                rm -f /usr/doc/HOWTO
        fi
fi

#DEBHELPER#

exit 0