X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/hvirt-config.git/blobdiff_plain/64ff428d0ee4c14f4e154962a1b8ed4443390be3..af3453936f4dbe125a6b9fadbe086fc6972b47ce:/debian/hvirt-devconfig.postinst diff --git a/debian/hvirt-devconfig.postinst b/debian/hvirt-devconfig.postinst old mode 100644 new mode 100755 index 3deaf89..3f448f8 --- a/debian/hvirt-devconfig.postinst +++ b/debian/hvirt-devconfig.postinst @@ -1,5 +1,5 @@ #!/bin/sh -# postinst script for #PACKAGE# +# postinst script for hvirt-devconfig # # see: dh_installdeb(1) @@ -17,19 +17,15 @@ set -e # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package + case "$1" in configure) - # Need to do it like this to avoid shell injection - /usr/bin/perl -i -e '$r = `invirt-getconf kerberos.realm`; chomp($r); - while(<>) { s/^([ \t]*default_realm *=).*$/\1 $r/m; print; }' /etc/krb5.conf.invirt + invirt-reload ;; abort-upgrade|abort-remove|abort-deconfigure) ;; - triggered) - ;; - *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 @@ -42,5 +38,3 @@ esac #DEBHELPER# exit 0 - -