From: Peter Palfrader Date: Sun, 15 Sep 2019 08:03:54 +0000 (+0200) Subject: whitespace/quoting: modules/roles/manifests/cdbuilder_local_mirror.pp (make lint... X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;ds=sidebyside;h=7a37eb9731a37f1fa7e42baa45f01dab65faa040;p=mirror%2Fdsa-puppet.git whitespace/quoting: modules/roles/manifests/cdbuilder_local_mirror.pp (make lint happy) --- diff --git a/modules/roles/manifests/cdbuilder_local_mirror.pp b/modules/roles/manifests/cdbuilder_local_mirror.pp index 9e9cc57fb..565a49594 100644 --- a/modules/roles/manifests/cdbuilder_local_mirror.pp +++ b/modules/roles/manifests/cdbuilder_local_mirror.pp @@ -1,21 +1,21 @@ class roles::cdbuilder_local_mirror { - include apache2 + include apache2 - $apache_addr = "172.29.103.1" - $vhost_listen = "${apache_addr}:80" + $apache_addr = '172.29.103.1' + $vhost_listen = "${apache_addr}:80" - apache2::site { '010-local-mirror.cdbuilder.debian.org': - site => 'local-mirror.cdbuilder.debian.org', - content => template('roles/apache-local-mirror.cdbuilder.debian.org.erb'), - } + apache2::site { '010-local-mirror.cdbuilder.debian.org': + site => 'local-mirror.cdbuilder.debian.org', + content => template('roles/apache-local-mirror.cdbuilder.debian.org.erb'), + } - file { "/etc/apache2/ports.conf": - require => Package['apache2'], - content => @("EOF"), - # This file is maintained by puppet - Listen 127.0.0.1:80 - Listen $vhost_listen - | EOF - notify => Service['apache2'] - } + file { '/etc/apache2/ports.conf': + require => Package['apache2'], + content => @("EOF"), + # This file is maintained by puppet + Listen 127.0.0.1:80 + Listen ${vhost_listen} + | EOF + notify => Service['apache2'], + } }