Package: aide-common; Maintainer for aide-common is Aide Maintainers <aide@packages.debian.org>; Source for aide-common is src:aide (PTS, buildd, popcon).
Reported by: Daniel Dickinson <debian@cshore.neomailbox.net>
Date: Mon, 3 Jun 2013 13:39:02 UTC
Severity: normal
Tags: confirmed
Found in version aide/0.15.1-8
Fixed in version aide/0.16-2
Done: Marc Haber <mh+debian-packages@zugschlus.de>
Bug is archived. No further changes may be made.
View this report as an mbox folder, status mbox, maintainer mbox
Report forwarded
to debian-bugs-dist@lists.debian.org, debian@cshore.neomailbox.net, Aide Maintainers <pkg-aide-maintainers@lists.alioth.debian.org>:
Bug#710912; Package aide-common.
(Mon, 03 Jun 2013 13:39:06 GMT) (full text, mbox, link).
Acknowledgement sent
to Daniel Dickinson <debian@cshore.neomailbox.net>:
New Bug report received and forwarded. Copy sent to debian@cshore.neomailbox.net, Aide Maintainers <pkg-aide-maintainers@lists.alioth.debian.org>.
(Mon, 03 Jun 2013 13:39:06 GMT) (full text, mbox, link).
Message #5 received at submit@bugs.debian.org (full text, mbox, reply):
Package: aide-common
Version: 0.15.1-8
Severity: normal
1) Doesn't exclude template.d in /etc/amanda if one is using the templating system. This results in configs from the template being included, with bad effects
2) Something in the sample templates from amanda produces syntax errors in the autogenerated aide config file. It appears that for some reason host is blank and dev has the hash (#) and host (e.g. ("#host"))
3) Alternatively the error could be due to a line with only a hash (#) and maybe whitespace
4) amgetconf changerfile returns "changer" (sans quotes) if there is no changerfile defined, which confuses the 31_aide-amanda-server script and results in a line with a syntax error (define with not /)
Here is what I have a work around:
#!/bin/bash
if ! [ -d /etc/amanda ]; then
exit 0
fi
for configfile in $(find /etc/amanda -name amanda.conf ! -path '/etc/amanda/template.d*'); do
config="$(dirname $configfile)"
cd $config
CONF="${config##*/}"
AMANDA_TAPEDEV="$(amgetconf $CONF tapedev)"
AMANDA_TAPEDEV="${AMANDA_TAPEDEV#file:}"
if [ -d "$AMANDA_TAPEDEV" ]; then
echo "@@define AMANDA_TAPEDEV $AMANDA_TAPEDEV"
for slot in $(find $AMANDA_TAPEDEV -type d -regex '.*/slot[0-9]+' -printf "%P\n"); do
if [ -f "disklist" ]; then
while read host dev rest; do
if echo $host | grep -q '^\(#.*\)\?$'; then continue; fi
dev="$(echo $dev | sed 's|/|_|g')"
echo "!@@{AMANDA_TAPEDEV}/$slot/[0-9]{5}[-\.]$host\.$dev\.[0123]$"
done < disklist
fi
cat <<EOF
@@{AMANDA_TAPEDEV}/$slot/00000[-\.]$CONF-$(printf "%03d" ${slot#slot})$ VarFile
!@@{AMANDA_TAPEDEV}/$slot/[0-9]{5}[-\.]TAPEEND$
@@{AMANDA_TAPEDEV}/$slot$ VarDir
EOF
done
cat <<EOF
@@{AMANDA_TAPEDEV}/(data|info)$ VarFile
@@{AMANDA_TAPEDEV}$ VarDir
EOF
fi
AMANDA_LOGDIR="$(amgetconf $CONF logdir)"
if [ -n "$AMANDA_LOGDIR" ]; then
cat <<EOF
@@define AMANDA_LOGDIR $AMANDA_LOGDIR
@@{AMANDA_LOGDIR}/log\.@@{YEAR4D}[0-9]{4}\.0$ LowDELog
@@{AMANDA_LOGDIR}/oldlog/log\.@@{YEAR4D}[0-9]{4}\.0$ SerMemberDELog
@@{AMANDA_LOGDIR}/amdump\.1$ LoSerMemberLog
@@{AMANDA_LOGDIR}/amdump\.[2-8]$ SerMemberLog
@@{AMANDA_LOGDIR}/amdump\.9$ HiSerMemberLog
@@{AMANDA_LOGDIR}(/oldlog)?$ VarDir
EOF
fi
AMANDA_INDEXDIR="$(amgetconf $CONF indexdir)"
if [ -n "$AMANDA_INDEXDIR" ]; then
echo "@@define AMANDA_INDEXDIR $AMANDA_INDEXDIR"
if [ -f "disklist" ]; then
while read host dev rest; do
if echo $host | grep -q '^\(#.*\)\?$'; then continue; fi
dev="$(echo $dev | sed 's|/|_|g')"
echo "!@@{AMANDA_INDEXDIR}/$host/$dev/@@{YEAR4D}[0-9]{4}_[0123]\.gz$"
echo "@@{AMANDA_INDEXDIR}/$host/$dev$ VarDir"
done < disklist
fi
fi
AMANDA_CHANGERFILE="$(amgetconf $CONF changerfile)"
AMANDA_CHANGERDIR="${AMANDA_CHANGERFILE%changer}"
if [ -n "$AMANDA_CHANGERDIR" ]; then
echo "@@define AMANDA_CHANGERDIR $AMANDA_CHANGERDIR"
echo "@@{AMANDA_CHANGERDIR}/(changer-(access|clean|slot)|tapelist(\.yesterday)?)$ VarFile"
echo "@@{AMANDA_CHANGERDIR}$ VarDir"
fi
AMANDA_INFOFILE="$(amgetconf $CONF infofile)"
if [ -n "$AMANDA_INFOFILE" ]; then
echo "@@define AMANDA_INFOFILE $AMANDA_INFOFILE"
if [ -f "disklist" ]; then
while read host dev rest; do
if echo $host | grep -q '^#.*$'; then continue; fi
dev="$(echo $dev | sed 's|/|_|g')"
echo "@@{AMANDA_INFOFILE}/$host/$dev/info$ VarFile"
echo "@@{AMANDA_INFOFILE}/$host/$dev$ VarDir"
done < disklist
fi
fi
# this is hardcoded since amgetconf refuses to deliver diskdir
AMANDA_HOLDING="/srv/amanda/holding"
if [ -n "$AMANDA_HOLDING" ]; then
echo "$AMANDA_HOLDING$ VarDir"
fi
echo "@@define AMANDALOG /var/log/amanda/server/$CONF"
cat <<EOF
!@@{AMANDALOG}/(amcheck|amlogroll|amreport|amtrm(idx|log)|chunker|driver|dumper|planner|taper)\.@@{YEAR4D}[0-9]{10}\.debug$
!@@{AMANDALOG}/(chunker|dumper)\.@@{YEAR4D}[0-9]{13}\.debug$
@@{AMANDALOG}$ VarDir
/var/log/amanda/server$ VarDir
EOF
done
cat <<EOF
@@define AMANDALOG /var/log/amanda/amandad
!@@{AMANDALOG}/(amandad)\.@@{YEAR4D}[0-9]{10}\.debug$
@@{AMANDALOG}$ VarDir
/tmp/amanda$ VarDir
EOF
#cat <<EOF
#!@@{AMANDATMP}/(amandad|amcheck|amtrm(idx|log)|killpgrp|selfcheck|sendbackup|sendsize)\.@@{YEAR4D}[0-9]{10}\.debug$
#@@{AMANDATMP}$ RamdiskData-Size
#/var/lib/dumpdates$ VarFile
#EOF
Regards,
Daniel
-- System Information:
Debian Release: 7.0
APT prefers stable-updates
APT policy: (990, 'stable-updates'), (990, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages aide-common depends on:
ii aide 0.15.1-8
ii bsd-mailx [mailx] 8.1.2-0.20111106cvs-1
ii debconf [debconf-2.0] 1.5.49
ii initscripts 2.88dsf-41
ii liblockfile1 1.09-5
ii ucf 3.0025+nmu3
Versions of packages aide-common recommends:
ii cron 3.0pl1-124
aide-common suggests no packages.
-- debconf information:
* aide/aideinit: false
* aideinit/copynew: true
aideinit/overwritenew: true
aide/newlibdir: false
Information forwarded
to debian-bugs-dist@lists.debian.org, Aide Maintainers <pkg-aide-maintainers@lists.alioth.debian.org>:
Bug#710912; Package aide-common.
(Sat, 21 Oct 2017 10:42:06 GMT) (full text, mbox, link).
Acknowledgement sent
to Marc Haber <mh+debian-packages@zugschlus.de>:
Extra info received and forwarded to list. Copy sent to Aide Maintainers <pkg-aide-maintainers@lists.alioth.debian.org>.
(Sat, 21 Oct 2017 10:42:06 GMT) (full text, mbox, link).
Message #10 received at 710912@bugs.debian.org (full text, mbox, reply):
tags #710912 confirmed pending
thanks
I have committed the new rule file. Thanks for providing it. Please take
my apologies for taking four entire years for that.
Greetings
Marc
On Mon, Jun 03, 2013 at 09:34:30AM -0400, Daniel Dickinson wrote:
> From: Daniel Dickinson <debian@cshore.neomailbox.net>
> Subject: Bug#710912: aide-common: Error in 31_aide-amanda-server
> To: Debian Bug Tracking System <submit@bugs.debian.org>
> Reply-To: Daniel Dickinson <debian@cshore.neomailbox.net>,
> 710912@bugs.debian.org
> Date: Mon, 03 Jun 2013 09:34:30 -0400
> X-Mailer: reportbug 6.4.4
>
> Package: aide-common
> Version: 0.15.1-8
> Severity: normal
>
> 1) Doesn't exclude template.d in /etc/amanda if one is using the templating system. This results in configs from the template being included, with bad effects
> 2) Something in the sample templates from amanda produces syntax errors in the autogenerated aide config file. It appears that for some reason host is blank and dev has the hash (#) and host (e.g. ("#host"))
> 3) Alternatively the error could be due to a line with only a hash (#) and maybe whitespace
> 4) amgetconf changerfile returns "changer" (sans quotes) if there is no changerfile defined, which confuses the 31_aide-amanda-server script and results in a line with a syntax error (define with not /)
>
> Here is what I have a work around:
>
>
> #!/bin/bash
>
> if ! [ -d /etc/amanda ]; then
> exit 0
> fi
> for configfile in $(find /etc/amanda -name amanda.conf ! -path '/etc/amanda/template.d*'); do
> config="$(dirname $configfile)"
> cd $config
> CONF="${config##*/}"
> AMANDA_TAPEDEV="$(amgetconf $CONF tapedev)"
> AMANDA_TAPEDEV="${AMANDA_TAPEDEV#file:}"
> if [ -d "$AMANDA_TAPEDEV" ]; then
> echo "@@define AMANDA_TAPEDEV $AMANDA_TAPEDEV"
> for slot in $(find $AMANDA_TAPEDEV -type d -regex '.*/slot[0-9]+' -printf "%P\n"); do
> if [ -f "disklist" ]; then
> while read host dev rest; do
> if echo $host | grep -q '^\(#.*\)\?$'; then continue; fi
> dev="$(echo $dev | sed 's|/|_|g')"
> echo "!@@{AMANDA_TAPEDEV}/$slot/[0-9]{5}[-\.]$host\.$dev\.[0123]$"
> done < disklist
> fi
> cat <<EOF
> @@{AMANDA_TAPEDEV}/$slot/00000[-\.]$CONF-$(printf "%03d" ${slot#slot})$ VarFile
> !@@{AMANDA_TAPEDEV}/$slot/[0-9]{5}[-\.]TAPEEND$
> @@{AMANDA_TAPEDEV}/$slot$ VarDir
> EOF
> done
> cat <<EOF
> @@{AMANDA_TAPEDEV}/(data|info)$ VarFile
> @@{AMANDA_TAPEDEV}$ VarDir
> EOF
> fi
> AMANDA_LOGDIR="$(amgetconf $CONF logdir)"
> if [ -n "$AMANDA_LOGDIR" ]; then
> cat <<EOF
> @@define AMANDA_LOGDIR $AMANDA_LOGDIR
> @@{AMANDA_LOGDIR}/log\.@@{YEAR4D}[0-9]{4}\.0$ LowDELog
> @@{AMANDA_LOGDIR}/oldlog/log\.@@{YEAR4D}[0-9]{4}\.0$ SerMemberDELog
> @@{AMANDA_LOGDIR}/amdump\.1$ LoSerMemberLog
> @@{AMANDA_LOGDIR}/amdump\.[2-8]$ SerMemberLog
> @@{AMANDA_LOGDIR}/amdump\.9$ HiSerMemberLog
> @@{AMANDA_LOGDIR}(/oldlog)?$ VarDir
> EOF
> fi
> AMANDA_INDEXDIR="$(amgetconf $CONF indexdir)"
> if [ -n "$AMANDA_INDEXDIR" ]; then
> echo "@@define AMANDA_INDEXDIR $AMANDA_INDEXDIR"
> if [ -f "disklist" ]; then
> while read host dev rest; do
> if echo $host | grep -q '^\(#.*\)\?$'; then continue; fi
> dev="$(echo $dev | sed 's|/|_|g')"
> echo "!@@{AMANDA_INDEXDIR}/$host/$dev/@@{YEAR4D}[0-9]{4}_[0123]\.gz$"
> echo "@@{AMANDA_INDEXDIR}/$host/$dev$ VarDir"
> done < disklist
> fi
> fi
> AMANDA_CHANGERFILE="$(amgetconf $CONF changerfile)"
> AMANDA_CHANGERDIR="${AMANDA_CHANGERFILE%changer}"
> if [ -n "$AMANDA_CHANGERDIR" ]; then
> echo "@@define AMANDA_CHANGERDIR $AMANDA_CHANGERDIR"
> echo "@@{AMANDA_CHANGERDIR}/(changer-(access|clean|slot)|tapelist(\.yesterday)?)$ VarFile"
> echo "@@{AMANDA_CHANGERDIR}$ VarDir"
> fi
> AMANDA_INFOFILE="$(amgetconf $CONF infofile)"
> if [ -n "$AMANDA_INFOFILE" ]; then
> echo "@@define AMANDA_INFOFILE $AMANDA_INFOFILE"
> if [ -f "disklist" ]; then
> while read host dev rest; do
> if echo $host | grep -q '^#.*$'; then continue; fi
> dev="$(echo $dev | sed 's|/|_|g')"
> echo "@@{AMANDA_INFOFILE}/$host/$dev/info$ VarFile"
> echo "@@{AMANDA_INFOFILE}/$host/$dev$ VarDir"
> done < disklist
> fi
> fi
> # this is hardcoded since amgetconf refuses to deliver diskdir
> AMANDA_HOLDING="/srv/amanda/holding"
> if [ -n "$AMANDA_HOLDING" ]; then
> echo "$AMANDA_HOLDING$ VarDir"
> fi
> echo "@@define AMANDALOG /var/log/amanda/server/$CONF"
> cat <<EOF
> !@@{AMANDALOG}/(amcheck|amlogroll|amreport|amtrm(idx|log)|chunker|driver|dumper|planner|taper)\.@@{YEAR4D}[0-9]{10}\.debug$
> !@@{AMANDALOG}/(chunker|dumper)\.@@{YEAR4D}[0-9]{13}\.debug$
> @@{AMANDALOG}$ VarDir
> /var/log/amanda/server$ VarDir
> EOF
> done
>
> cat <<EOF
> @@define AMANDALOG /var/log/amanda/amandad
> !@@{AMANDALOG}/(amandad)\.@@{YEAR4D}[0-9]{10}\.debug$
> @@{AMANDALOG}$ VarDir
> /tmp/amanda$ VarDir
> EOF
>
> #cat <<EOF
> #!@@{AMANDATMP}/(amandad|amcheck|amtrm(idx|log)|killpgrp|selfcheck|sendbackup|sendsize)\.@@{YEAR4D}[0-9]{10}\.debug$
> #@@{AMANDATMP}$ RamdiskData-Size
> #/var/lib/dumpdates$ VarFile
> #EOF
>
> Regards,
>
> Daniel
>
> -- System Information:
> Debian Release: 7.0
> APT prefers stable-updates
> APT policy: (990, 'stable-updates'), (990, 'stable')
> Architecture: amd64 (x86_64)
> Foreign Architectures: i386
>
> Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores)
> Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)
> Shell: /bin/sh linked to /bin/dash
>
> Versions of packages aide-common depends on:
> ii aide 0.15.1-8
> ii bsd-mailx [mailx] 8.1.2-0.20111106cvs-1
> ii debconf [debconf-2.0] 1.5.49
> ii initscripts 2.88dsf-41
> ii liblockfile1 1.09-5
> ii ucf 3.0025+nmu3
>
> Versions of packages aide-common recommends:
> ii cron 3.0pl1-124
>
> aide-common suggests no packages.
>
> -- debconf information:
> * aide/aideinit: false
> * aideinit/copynew: true
> aideinit/overwritenew: true
> aide/newlibdir: false
--
-----------------------------------------------------------------------------
Marc Haber | "I don't trust Computers. They | Mailadresse im Header
Leimen, Germany | lose things." Winona Ryder | Fon: *49 6224 1600402
Nordisch by Nature | How to make an American Quilt | Fax: *49 6224 1600421
Added tag(s) confirmed and pending.
Request was from Marc Haber <mh+debian-packages@zugschlus.de>
to control@bugs.debian.org.
(Sat, 21 Oct 2017 10:42:12 GMT) (full text, mbox, link).
Message sent on
to Daniel Dickinson <debian@cshore.neomailbox.net>:
Bug#710912.
(Sat, 21 Oct 2017 10:42:14 GMT) (full text, mbox, link).
Reply sent
to Marc Haber <mh+debian-packages@zugschlus.de>:
You have taken responsibility.
(Fri, 17 Nov 2017 18:21:12 GMT) (full text, mbox, link).
Notification sent
to Daniel Dickinson <debian@cshore.neomailbox.net>:
Bug acknowledged by developer.
(Fri, 17 Nov 2017 18:21:13 GMT) (full text, mbox, link).
Message #20 received at 710912-close@bugs.debian.org (full text, mbox, reply):
Source: aide
Source-Version: 0.16-2
We believe that the bug you reported is fixed in the latest version of
aide, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to 710912@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Marc Haber <mh+debian-packages@zugschlus.de> (supplier of updated aide package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Thu, 02 Nov 2017 15:58:26 +0100
Source: aide
Binary: aide aide-xen aide-dynamic aide-common
Architecture: source
Version: 0.16-2
Distribution: unstable
Urgency: medium
Maintainer: Aide Maintainers <pkg-aide-maintainers@lists.alioth.debian.org>
Changed-By: Marc Haber <mh+debian-packages@zugschlus.de>
Description:
aide - Advanced Intrusion Detection Environment - static binary
aide-common - Advanced Intrusion Detection Environment - Common files
aide-dynamic - Advanced Intrusion Detection Environment - dynamic binary
aide-xen - Advanced Intrusion Detection Environment - static binary for XEN
Closes: 289171 710912 720009 723904 724291 770095 841006 868749
Changes:
aide (0.16-2) unstable; urgency=medium
.
* improve rules:
* 10_aide_distribution: Take more care in sanitizing
distribution data. Thanks to Raphaël Hertzog (Closes: #868749)
* 31_aide_amanda-server
Thanks to Daniel Dickinson (Closes: #710912, #723904)
* 31_aide_apt
* Take multiarch patch from bug report.
Thanks to Simon Deziel (Closes: #770095)
* remove Pre-component Release Files (see discussion in #879272)
Thanks to Julian Andres Klode
* 31_aide_apt-listbugs: clean up obsolete dev comments
* 31_aide_cups
* 31_aide_dpkg
* 31_aide_isc-dhcp-server / 31_aide_isc-dhcp-client
* rename from 31_aide_dhcp3-server and 31_aide_dhcp3-client
* adapt paths
* 31_aide_logrotate
* 31_aide_man: add CACHEDIR
* 31_aide_mlocate: leaves around a lock file
* Add 31_aide_php7, remove 31_aide_php[45].
Thanks to Frederik Himpe (Closes: #724291)
* 31_aide_samba
* 31_aide_sudo: properly handle changing run directory
* 70_aide_run: /run changes link count
* new rules:
* 10_aide_prevyear: help log file handling
* 31_aide_atop
* 31_aide_cereal
* 31_aide_gnupg
* 31_aide_pam_motd
* 31_aide_php-common
* 31_aide_run_systemd_netif
* 31_aide_run_systemd_resolve
* 31_aide_runuser
* 31_aide_systemd_journal
* 31_aide_systemd_sessions
* remove rules that only had placeholder comments
* remove obsolete 31_aide_gpg
* remove obsolete 31-aide_apt_[un]stable
* aide.wrapper:
* wrapper now aborts immediately if lock cannot be
obtained (Closes: #841006)
* Use --config-check in wrapper (Closes: #289171)
* major rework of ucf handling:
* Allow rules to be overridden (Closes: #720009)
* The new code will eventually be submitted for inclusion in
ucf proper or packaged as ucf-helper
* Standards-Version: 4.1.1
* aide-xen and aide-dynamic are now Priority: optional
* no other changes necessary
Checksums-Sha1:
72024c9216c224ebe656615fbe8ea587d5e06f6d 2333 aide_0.16-2.dsc
bf4eb2b53d97ee18745a0fc7c7010ed066ae0b39 83876 aide_0.16-2.debian.tar.xz
7a886045a327f9762fadeb3c2ade695bb088987f 5973 aide_0.16-2_source.buildinfo
Checksums-Sha256:
4ce8e3f85f0c7faa06eb7b7e10eeecaa46b4257393dab0725f91469d87b6e59c 2333 aide_0.16-2.dsc
6fd801b5a87ba03bf1ba2ac7ddf0ffcd3c6bfb91296fe2ff8f32a9ac9ef6d63f 83876 aide_0.16-2.debian.tar.xz
249081299b511582101796f7ddf4c16524b63b2240fe3e50c36dd847bd1dcaee 5973 aide_0.16-2_source.buildinfo
Files:
0b12f9cc9dd2431dc77e35919d40ccd2 2333 admin optional aide_0.16-2.dsc
6d42771e4b7003f1ae532d4b0af286ab 83876 admin optional aide_0.16-2.debian.tar.xz
51821caa5e74ad52d401e5eebbe6b69c 5973 admin optional aide_0.16-2_source.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEE6QL5UJ/L0pcuNEbjj3cgEwEyBEIFAloPJKkACgkQj3cgEwEy
BEIuSw//REQfYOEQIsVK8RDFijMsu/3xqv9pZAOARnw5gk6W8P3XSjExcA/I6k+9
4PFSWbkkPHa7vZBkW7XXDXf3Bgwafnttzm75qWDTHtoHR07TUFYMZT69o9dHxWht
XIVm0hItEtBdAmgJX0n4qYhwvF9kr/cy2IYAi2PQgXsXtYzrdeFkgd4n83ut9cC3
i9/lWjBudITkDOWdsxw8SeuaY1BusROA+LVxMfTEwFDS0nPqdgs8QgVUiu+bC8h7
Zw2lHGz6OfgVj6UD1S5hnQD4xR17euuUbapilc9oBLgOlUBx8i2xYXaP5yP/QDdm
mH0YAh2RuKBbLMJwF9mjet9kyS5dEYjs4wdrQmVE6IweypqpOBjQ7eRcJ7YsYwLF
odkydHu4hrxybb2hBv6UXtz7hS+hH9lxHKAjXQ5NZd+TUOzGyquAdJYdf8WQkMWY
IELNnXsaKxKcXcBlokbRIvDXvsfz3UXec8VMUrC0x3pb8j5DiY+leYxX+5RIOHlz
Cgqylb2+080jbeL8YRdMrI2aotTKmX1013y8yLAoC6rFYXVvzZUUVaD4wLJvGaBP
Uf92KKT0bkUApnK8pBqwYqmNhqeuMEq5smRJ7EXZpfEAiYn7lwHP2x8yIHJDD8/1
jyq7PBR6qkOy60Mb8R0uYX+6rf+VFjgcmyagI59Em8533Tp2d/A=
=TvYq
-----END PGP SIGNATURE-----
Bug archived.
Request was from Debbugs Internal Request <owner@bugs.debian.org>
to internal_control@bugs.debian.org.
(Thu, 21 Dec 2017 07:26:08 GMT) (full text, mbox, link).
Send a report that this bug log contains spam.
Debbugs is free software and licensed under the terms of the GNU Public License version 2. The current version can be obtained from https://bugs.debian.org/debbugs-source/.
Copyright © 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson, 2005-2017 Don Armstrong, and many other contributors.