File: spamoracle-byte.preinst

package info (click to toggle)
spamoracle 1.4-12
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 256 kB
  • ctags: 245
  • sloc: ml: 1,198; makefile: 145; 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#