File: spf-tools-python.prerm

package info (click to toggle)
pyspf 2.0.14-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 764 kB
  • sloc: python: 1,486; makefile: 23; sh: 18
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#