Summary: When I was putting together the packaging, I used @agaida's brilliant idea to explicitly express the configuration options in debian/rules. Unfortunately, I neglected to notice the fact that his packaging had turned off encryption support, so I turned it back on. I also got rid of the kind of pointless postinst that was in there, as vorlon had pointed out. Test Plan: Do some encryption :) Reviewers: tsimonq2 Reviewed By: tsimonq2 Subscribers: agaida Differential Revision: https://phab.lubuntu.me/D34ci/stable
parent
d8b1da48d9
commit
2c1ce150f7
@ -1,25 +0,0 @@
|
||||
#!/bin/sh
|
||||
# postinst script for #PACKAGE#
|
||||
#
|
||||
# see: dh_installdeb(1)
|
||||
|
||||
set -e
|
||||
|
||||
case "$1" in
|
||||
configure)
|
||||
# not needed: ldconfig /usr/lib/x86_64-linux-gnu/libtrojita_plugins.so
|
||||
true
|
||||
;;
|
||||
|
||||
abort-upgrade|abort-remove|abort-deconfigure)
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "postinst called with unknown argument \`$1'" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
#DEBHELPER#
|
||||
|
||||
exit 0
|
Loading…
Reference in new issue