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:
916e969
)
Add guard around use of $::hoster, since it comes from our own facts
author
Tollef Fog Heen
<tfheen@err.no>
Sat, 10 Nov 2012 21:27:54 +0000
(22:27 +0100)
committer
Tollef Fog Heen
<tfheen@err.no>
Sat, 10 Nov 2012 21:27:54 +0000
(22:27 +0100)
manifests/site.pp
patch
|
blob
|
history
diff --git
a/manifests/site.pp
b/manifests/site.pp
index
41d88df
..
bdbdb28
100644
(file)
--- a/
manifests/site.pp
+++ b/
manifests/site.pp
@@
-118,7
+118,9
@@
node default {
munin::check { 'spamassassin': }
}
- if $::hoster in [ynic] {
- include lldp
+ if $::hoster {
+ if $::hoster in [ynic] {
+ include lldp
+ }
}
}