This is an automated email from the git hooks/post-receive script. abe pushed a commit to branch master in repository debsums.
commit 9099e6265cc8715cdf3c39f1012b53f0a3271bd3 Author: Francois Marier <[email protected]> Date: Thu Jul 2 23:25:10 2009 +1200 fix syntax error in /etc/apt/apt.conf.d/90debsums (closes: #535364) --- debian/changelog | 7 +++++++ debian/postinst | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index f330af7..465d6aa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debsums (2.0.47) UNRELEASED; urgency=low + + * debian/postinst: fix syntax error in /etc/apt/apt.conf.d/90debsums + Thanks to Filippo for the heads up! (closes: #535364) + + -- Francois Marier <[email protected]> Thu, 02 Jul 2009 23:22:29 +1200 + debsums (2.0.46) unstable; urgency=low * Bump Standards-Version to 3.8.2 diff --git a/debian/postinst b/debian/postinst index e32ba14..7529218 100755 --- a/debian/postinst +++ b/debian/postinst @@ -20,7 +20,7 @@ case "$1" in configure) db_get debsums/apt-autogen || true if [ "$RET" = true ]; then - echo 'DPkg::Post-Invoke:: { "if [ -x /usr/bin/debsums ]; then /usr/bin/debsums --generate=nocheck -sp /var/cache/apt/archives; fi"; };' >$APT_CONF + echo 'DPkg::Post-Invoke { "if [ -x /usr/bin/debsums ]; then /usr/bin/debsums --generate=nocheck -sp /var/cache/apt/archives; fi"; };' >$APT_CONF else rm -f $APT_CONF fi -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/debsums.git _______________________________________________ Pkg-perl-cvs-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
