File: spamoracle-byte.preinst

package info (click to toggle)
spamoracle 1.4-8
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 248 kB
  • ctags: 243
  • sloc: ml: 1,198; makefile: 138; sh: 74
file content (15 lines) | stat: -rw-r--r-- 353 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh -e

case "$1" in
    install|upgrade)
        if [ -n "$2" ] && dpkg --compare-versions "$2" lt "1.2-5"
        then
            if [ -d /usr/share/doc/spamoracle-byte ]; then
                mv /usr/share/doc/spamoracle-byte \
                /usr/share/doc/spamoracle-byte.moved-by-preinst
            fi
        fi
    ;;
esac

#DEBHELPER#