~ubuntu-branches/ubuntu/trusty/nmap/trusty

« back to all changes in this revision

Viewing changes to debian/zenmap.prerm

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-02-19 14:27:50 UTC
  • mfrom: (3.2.2 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20140219142750-4nsx97nm0k0qm90g
Tags: 6.40-0.2ubuntu1
Build using autotools-dev to fix build failure on arm64.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh -e
2
 
 
3
 
# Debian nmapfe prerm
4
 
# LaMont Jones <lamont@debian.org>
5
 
 
6
 
case "$1" in
7
 
    remove|upgrade|deconfigure)
8
 
        ;;
9
 
 
10
 
    failed-upgrade)
11
 
        ;;
12
 
 
13
 
    *)
14
 
        echo "prerm called with unknown argument \`$1'" >&2
15
 
        exit 1
16
 
        ;;
17
 
esac
18
 
#DEBHELPER#
19
 
exit 0