diffstat for fusionforge_5.3.2-1 fusionforge_5.3.2-1tanglu0.1 changelog | 9 +++++++++ dsf-in/plugin.postinst | 5 ++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff -u fusionforge-5.3.2/debian/changelog fusionforge-5.3.2/debian/changelog --- fusionforge-5.3.2/debian/changelog +++ fusionforge-5.3.2/debian/changelog @@ -1,3 +1,12 @@ +fusionforge (5.3.2-1tanglu0.1) bartholomea-updates; urgency=high + + * Support dpkg-1.17.17 and avoid a trigger loop by replacing 'interest' + triggers by 'interest-noawait' ones (closes: #772870) + * Use Debian-specific 'invoke-rc.d' instead of portable 'service' + (closes: #771619) + + -- Jon Severinsson Sat, 28 Mar 2015 17:00:00 +0100 + fusionforge (5.3.2-1) unstable; urgency=high [ Sylvain Beucler ] diff -u fusionforge-5.3.2/debian/dsf-in/plugin.postinst fusionforge-5.3.2/debian/dsf-in/plugin.postinst --- fusionforge-5.3.2/debian/dsf-in/plugin.postinst +++ fusionforge-5.3.2/debian/dsf-in/plugin.postinst @@ -29,7 +29,7 @@ @BINARY_PATH@/upgrade-db.php @PLUGSHORTNAME@ # Restart apache if there is some change in config if [ -f @CONFIG_PATH@/httpd.conf.d/plugin-@PLUGSHORTNAME@.inc ]; then - service apache2 reload + invoke-rc.d apache2 reload fi # Run plugin-specific install if [ -f @PLUGINS_PATH@/@PLUGSHORTNAME@/bin/install.sh ]; then @@ -41,6 +41,9 @@ abort-upgrade|abort-remove|abort-deconfigure) ;; + triggered) + ;; + *) echo "postinst called with unknown argument \`$1'" >&2 exit 1