From: Steven Valdez Date: Tue, 18 Jun 2013 00:08:02 +0000 (-0400) Subject: Added mapped IPv4 address to allowed list. X-Git-Tag: 0.0.15~5 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/xvm-munin-config.git/commitdiff_plain/eb85a5cccdedbdac1626529be18bd883fa03d41e?ds=sidebyside Added mapped IPv4 address to allowed list. --- diff --git a/debian/changelog b/debian/changelog index e384f3a..0201b5b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +xvm-munin-config (0.0.13ubuntu1) precise; urgency=low + + * Added ::ffff:$IP mapped IPv4 address to allowed list. + + -- Steven Valdez Mon, 17 Jun 2013 20:07:02 -0400 + xvm-munin-config (0.0.13) unstable; urgency=low * Ensure that UUIDs begin with a letter and not a number, to work around diff --git a/debian/transform_munin-node.conf.xvm.mako b/debian/transform_munin-node.conf.xvm.mako index a6955df..af362d2 100755 --- a/debian/transform_munin-node.conf.xvm.mako +++ b/debian/transform_munin-node.conf.xvm.mako @@ -21,6 +21,7 @@ END { print <<'EOF'; % for host in cfg.get('monitoring', []): allow ^${host.ip.replace('.', '\.')}$ +allow ^::ffff:${host.ip.replace('.', '\.')}$ % endfor EOF }