Get rid of some intermediate variables
authorTollef Fog Heen <tfheen@err.no>
Fri, 2 Feb 2018 10:14:29 +0000 (11:14 +0100)
committerTollef Fog Heen <tfheen@err.no>
Fri, 2 Feb 2018 10:14:29 +0000 (11:14 +0100)
modules/roles/manifests/debian_mirror.pp

index 680eccd..46eb1ac 100644 (file)
@@ -30,9 +30,9 @@ class roles::debian_mirror {
                }
        }
 
-       $mirrors = hiera('roles.debian_mirror', {})
-       $fastly_mirrors = $mirrors.filter |$h| { $h[1]['fastly-backend'] }
-       $hosts_to_check = $fastly_mirrors.map |$h| { $h[1]['service-hostname'] }
+       $hosts_to_check = hiera('roles.debian_mirror', {})
+               .filter |$h| { $h[1]['fastly-backend'] }
+               .map |$h| { $h[1]['service-hostname'] }
 
        roles::mirror_health { 'ftp':
                check_hosts   => $hosts_to_check,