[go: up one dir, main page]

File: kleborate.prerm

package info (click to toggle)
kleborate 2.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 174,712 kB
  • sloc: python: 3,501; sh: 75; makefile: 11
file content (24 lines) | stat: -rw-r--r-- 418 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh

set -e

case "$1" in
    remove|purge|upgrade|deconfigure)
	rm -f /usr/lib/python3/dist-packages/kleborate/data/*.fasta.nin
	rm -f /usr/lib/python3/dist-packages/kleborate/data/*.fasta.ndb
	rm -f /usr/lib/python3/dist-packages/kleborate/data/*.fasta.ntf
    ;;
    failed-upgrade)
    ;;

    *)
        echo "postrm called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

#DEBHELPER#

exit 0