~gandelman-a/ubuntu/oneiric/openbsd-inetd/merge

« back to all changes in this revision

Viewing changes to debian/postrm

  • Committer: Bazaar Package Importer
  • Author(s): Marco d'Itri
  • Date: 2002-08-20 15:51:39 UTC
  • Revision ID: james.westby@ubuntu.com-20020820155139-y1shmgf3ts6hcxrd
Tags: 0.20020802-1
* New package.
* Pre/postinstall scripts borrowed from aj's netkit-inetd package.
* This package fixes many bugs in netkit-inetd, among them:
  #10813, #32579, #55052, #66752, #143539, #143815, #143816, #125181,
  #45907, #82241, #96544, #110673.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh -e
 
2
 
 
3
DIVERT="/usr/sbin/inetd /usr/share/man/man8/inetd.8.gz /usr/share/man/man5/inetd.conf.5.gz"
 
4
 
 
5
if [ remove = "$1" ]; then
 
6
  for file in $DIVERT; do
 
7
    dpkg-divert --package openbsd-inetd --remove --rename \
 
8
      --divert $file.netkit $file
 
9
  done
 
10
fi
 
11
 
 
12
##DEBHELPER##