diff options
author | Tom Grennan <tgrennan@vyatta.com> | 2007-09-19 14:19:55 -0700 |
---|---|---|
committer | Tom Grennan <tgrennan@vyatta.com> | 2007-09-19 14:19:55 -0700 |
commit | a72a48c6e541665c2ae36520f78e7f30c6d72312 (patch) | |
tree | 2a0411251a199f442191adaf3a46090fbd050c92 /debian/postinst.ex | |
parent | 607ab1113fd68be09b0bf40a8ae04a5a077aecfb (diff) | |
download | vyatta-op-a72a48c6e541665c2ae36520f78e7f30c6d72312.tar.gz vyatta-op-a72a48c6e541665c2ae36520f78e7f30c6d72312.zip |
fix linda/lintian detected errors
Diffstat (limited to 'debian/postinst.ex')
-rw-r--r-- | debian/postinst.ex | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/debian/postinst.ex b/debian/postinst.ex deleted file mode 100644 index 3dd369a..0000000 --- a/debian/postinst.ex +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh -# postinst script for vyatta-op -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * <postinst> `configure' <most-recently-configured-version> -# * <old-postinst> `abort-upgrade' <new version> -# * <conflictor's-postinst> `abort-remove' `in-favour' <package> -# <new-version> -# * <postinst> `abort-remove' -# * <deconfigured's-postinst> `abort-deconfigure' `in-favour' -# <failed-install-package> <version> `removing' -# <conflicting-package> <version> -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - - -case "$1" in - configure) - ;; - - 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. - -#DEBHELPER# - -exit 0 - - |