From fc3e8aad6f651125eb85ce3dda809549bd0042c0 Mon Sep 17 00:00:00 2001 From: Tytus Kurek Date: Fri, 2 Mar 2018 13:57:17 +0100 Subject: [PATCH] Add missing "host" options to "pools.yaml" This patchset adds missing "host" option to "options" section in "/etc/designate/pools.yaml" file which is causing the designate pool manager service to send notifications to localhost on every zone change. Change-Id: Icb189038ff7e1e48588430b3f08c3d8aa676811f Closes-Bug: 1752861 --- src/templates/mitaka/pools.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/templates/mitaka/pools.yaml b/src/templates/mitaka/pools.yaml index 59dc9ab..aacade7 100644 --- a/src/templates/mitaka/pools.yaml +++ b/src/templates/mitaka/pools.yaml @@ -32,6 +32,7 @@ port: 5354 {% endfor %} options: + host: {{ slave.address }} rndc_host: {{ slave.address }} rndc_key_file: /etc/designate/rndc.key {% endfor %} @@ -45,6 +46,7 @@ port: 5354 {% endfor %} options: + host: {{ slave.address }} rndc_host: {{ slave.address }} rndc_key_file: {{ slave.rndc_key_file }} {% endfor %}