From a797075f135a91181455ee45fecf6581d9dc6460 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Wed, 11 Apr 2012 16:47:51 +0000 Subject: [PATCH] Drop unnecessary postinst script We don't actually use anything inside it and the printed "TODO" isn't really something which should be kept :) From: Michael Prokop --- debian/postinst | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 debian/postinst diff --git a/debian/postinst b/debian/postinst deleted file mode 100644 index 8f4b6cd4..00000000 --- a/debian/postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -# postinst script for ngcp-db-schema - -set -e - -case "$1" in - configure) - echo TODO - ;; - - 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