From eb85a5cccdedbdac1626529be18bd883fa03d41e Mon Sep 17 00:00:00 2001 From: Steven Valdez Date: Mon, 17 Jun 2013 20:08:02 -0400 Subject: [PATCH] Added mapped IPv4 address to allowed list. --- debian/changelog | 6 ++++++ debian/transform_munin-node.conf.xvm.mako | 1 + 2 files changed, 7 insertions(+) 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 } -- 1.7.9.5