File: spf-tools-python.prerm

package info (click to toggle)
pyspf 2.0.7-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 340 kB
  • sloc: python: 1,393; makefile: 34; sh: 17
file content (14 lines) | stat: -rw-r--r-- 177 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -e

mode=$1

source_package=pyspf

case "$mode" in
  remove )
    update-alternatives --remove spfquery /usr/bin/spfquery.$source_package
    ;;
esac

#DEBHELPER#