File: postrm

package info (click to toggle)
metaphlan2-data 2.6.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 753,200 kB
  • ctags: 1
  • sloc: sh: 121; makefile: 6
file content (24 lines) | stat: -rw-r--r-- 565 bytes parent folder | download | duplicates (3)
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

if [ "$1" = "remove" ] ; then
    # remove files created in postinst
    rm -rf /usr/share/metaphlan2/db_v20/*.bt2
fi

# purge the config file which is created in the postinst script
if [ "$1" = "purge" ] ; then
    rm -f /etc/metaphlan2/metaphlan2-data.conf
    # remove files created in postinst
    rm -rf /usr/share/metaphlan2/db_v20/*.bt2
fi

if [ "$1" = "purge" ] && [ -e /usr/share/debconf/confmodule ]; then
    # Source debconf library.
    . /usr/share/debconf/confmodule
    # Remove my changes to the db.
    db_purge
fi

#DEBHELPER#