From: Ben Pfaff Date: Thu, 24 Jul 2008 00:21:58 +0000 (-0700) Subject: Don't invoke Debconf from openflow-switch postinst. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fcb73d77bf6509d0efd98882bbead8d8180f5d7e;p=openvswitch Don't invoke Debconf from openflow-switch postinst. This was in there because at one time it seemed desirable to configure from the postinst, but that idea was abandoned. Now Debconf seems to be screwing something up somehow, so we might as well not run it at all, since it wasn't doing anything useful. --- diff --git a/debian/openflow-switch.config b/debian/openflow-switch.config deleted file mode 100755 index 7546e02a..00000000 --- a/debian/openflow-switch.config +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -set -e -. /usr/share/debconf/confmodule -# Nothing more to do -- the user is responsible for running ofp-switch-setup. diff --git a/debian/openflow-switch.postinst b/debian/openflow-switch.postinst deleted file mode 100755 index c8dc9a4a..00000000 --- a/debian/openflow-switch.postinst +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# postinst script for openflow-switch -# -# see: dh_installdeb(1) - -set -e - -. /usr/share/debconf/confmodule - -#DEBHELPER# - -exit 0 - -