projects
/
mirror
/
dsa-puppet.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eb79271
)
Get rid of some intermediate variables
author
Tollef Fog Heen
<tfheen@err.no>
Fri, 2 Feb 2018 10:14:29 +0000
(11:14 +0100)
committer
Tollef Fog Heen
<tfheen@err.no>
Fri, 2 Feb 2018 10:14:29 +0000
(11:14 +0100)
modules/roles/manifests/debian_mirror.pp
patch
|
blob
|
history
diff --git
a/modules/roles/manifests/debian_mirror.pp
b/modules/roles/manifests/debian_mirror.pp
index
680eccd
..
46eb1ac
100644
(file)
--- a/
modules/roles/manifests/debian_mirror.pp
+++ b/
modules/roles/manifests/debian_mirror.pp
@@
-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,