From: Peter Palfrader Date: Fri, 8 Jan 2016 20:35:26 +0000 (+0100) Subject: vars need a $ X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;ds=sidebyside;h=4b7e953b4fc1977b4c6f39e22e75b646dbe4f1cd;p=mirror%2Fdsa-puppet.git vars need a $ --- diff --git a/modules/roles/manifests/syncproxy.pp b/modules/roles/manifests/syncproxy.pp index d8621bd5a..bf19bd016 100644 --- a/modules/roles/manifests/syncproxy.pp +++ b/modules/roles/manifests/syncproxy.pp @@ -1,18 +1,18 @@ class roles::syncproxy { $bind = $::hostname ? { - 'milanollo' => '5.153.231.9', - 'mirror-isc' => '149.20.20.21', - 'mirror-umn' => '128.101.240.216', - 'klecker' => '130.89.148.10', - default => '' - } - bind6 = $::hostname ? { - 'milanollo' => '2001:41c8:1000:21::21:9', - 'mirror-isc' => '2001:4f8:8:36::1deb:21', - 'mirror-umn' => '2607:ea00:101:3c0b::1deb:216', - 'klecker' => '2001:610:1908:b000::148:10', - default => '' - } + 'milanollo' => '5.153.231.9', + 'mirror-isc' => '149.20.20.21', + 'mirror-umn' => '128.101.240.216', + 'klecker' => '130.89.148.10', + default => '' + } + $bind6 = $::hostname ? { + 'milanollo' => '2001:41c8:1000:21::21:9', + 'mirror-isc' => '2001:4f8:8:36::1deb:21', + 'mirror-umn' => '2607:ea00:101:3c0b::1deb:216', + 'klecker' => '2001:610:1908:b000::148:10', + default => '' + } rsync::site { 'syncproxy': content => template('roles/syncproxy/rsyncd.conf.erb'),