File: prerm

package info (click to toggle)
doc-linux-zh-text 2001.09-2001.09
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,928 kB
  • ctags: 1
  • sloc: makefile: 31; sh: 28
file content (15 lines) | stat: -rw-r--r-- 320 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh -e

#DEBHELPER#

if [ \( "$1" = "upgrade" -o "$1" = "remove" \) \
    -a -L /usr/share/doc/doc-linux-zh-html ]; then
    rm -f /usr/share/doc/doc-linux-zh-html
fi

if [ \( "$1" = "upgrade" -o "$1" = "remove" \) \
    -a -L /usr/share/doc/HOWTO/zh-html ]; then
    rm -f /usr/share/doc/HOWTO/zh-html
fi

exit 0