aboutsummaryrefslogtreecommitdiff
path: root/whatmaps/debiandistro.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2016-02-24 20:04:03 +0100
committerGuido Günther <agx@sigxcpu.org>2016-02-24 20:04:03 +0100
commit4e704c27a7014d0b1cd660b9f5c233787a798c14 (patch)
tree28fdf35c22d5fbdfe310a427c90e9c31ae86744e /whatmaps/debiandistro.py
parenta2e8aeb34bc615cc9c0082951721971bb141f20a (diff)
parent11ca10034c04267da8b00d2ef940b0548a13ef42 (diff)
Merge branch 'master' into debian/master
Diffstat (limited to 'whatmaps/debiandistro.py')
-rw-r--r--whatmaps/debiandistro.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/whatmaps/debiandistro.py b/whatmaps/debiandistro.py
index 2a095d1..32f3774 100644
--- a/whatmaps/debiandistro.py
+++ b/whatmaps/debiandistro.py
@@ -43,6 +43,7 @@ class DebianDistro(Distro):
_pkg_services = { 'apache2-mpm-worker': [ 'apache2' ],
'apache2-mpm-prefork': [ 'apache2' ],
'apache2.2-bin': [ 'apache2' ],
+ 'apache2-bin': [ 'apache2' ],
'dovecot-imapd': [ 'dovecot' ],
'dovecot-pop3d': [ 'dovecot' ],
'exim4-daemon-light': [ 'exim4' ],
@@ -165,7 +166,7 @@ class DebianDistro(Distro):
security_update_origins = klass._security_update_origins()
security_updates = {}
- for pkg in pkgs.values():
+ for pkg in list(pkgs.values()):
cache_pkg = cache[pkg.name]
for cache_version in cache_pkg.version_list:
if pkg.version == cache_version.ver_str: