#!/bin/sh # postinst script for #PACKAGE# # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-remove' # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in configure) # Get rid of old indexes rm -f /var/lib/debtags/*.idx* # Regenerate the indexes debtags update ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. # Automatically added by dh_installdeb/11 dpkg-maintscript-helper mv_conffile /etc/apt.conf.d/80debtags /etc/apt/apt.conf.d/80debtags 1.12.1~ debtags -- "$@" # End automatically added section # Automatically added by dh_installdeb/11 dpkg-maintscript-helper rm_conffile /etc/debtags/sources.list.d/source-example 1.12.2~ debtags -- "$@" # End automatically added section # Automatically added by dh_installdeb/11 dpkg-maintscript-helper rm_conffile /etc/debtags/sources.list 1.12.2~ debtags -- "$@" # End automatically added section # Automatically added by dh_installdeb/11 dpkg-maintscript-helper rm_conffile /etc/bash_completion.d/bash-completion 2.1.3~ debtags -- "$@" # End automatically added section # Automatically added by dh_installdeb/11 dpkg-maintscript-helper rm_conffile /etc/bash_completion.d/debtags 2.1.3~ debtags -- "$@" # End automatically added section # Cleanup leftover empty directories (see #670697 #730077 #764235) for dir in /etc/apt.conf.d /etc/debtags/sources.list.d/ /etc/debtags/ do if [ -d $dir ] then rmdir --ignore-fail-on-non-empty $dir fi done exit 0