~vcs-imports/schroot/trunk

« back to all changes in this revision

Viewing changes to debian/dchroot-dsa.postrm

  • Committer: Raphaël Hertzog
  • Date: 2017-01-09 17:05:27 UTC
  • Revision ID: git-v1:92420a9e911a47a9a2695ed8ea04ab2ce22f6681
Kill useless/obsolete binary packages: libsbuild-dev, libsbuild-doc, dchroot, dchroot-dsa.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh
2
 
# postrm script for dchroot-dsa
3
 
#
4
 
# see: dh_installdeb(1)
5
 
 
6
 
set -e
7
 
 
8
 
# summary of how this script can be called:
9
 
#        * <postrm> `remove'
10
 
#        * <postrm> `purge'
11
 
#        * <old-postrm> `upgrade' <new-version>
12
 
#        * <new-postrm> `failed-upgrade' <old-version>
13
 
#        * <new-postrm> `abort-install'
14
 
#        * <new-postrm> `abort-install' <old-version>
15
 
#        * <new-postrm> `abort-upgrade' <old-version>
16
 
#        * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
17
 
# for details, see /usr/doc/packaging-manual/
18
 
 
19
 
if [ "$1" = purge ]; then
20
 
    # Remove /etc/dchroot.conf if present
21
 
    rm -f /etc/dchroot.conf
22
 
fi
23
 
 
24
 
# dh_installdeb will replace this with shell code automatically
25
 
# generated by other debhelper scripts.
26
 
 
27
 
#DEBHELPER#
28
 
 
29