Mercurial > repos > other > Puppet
comparison manifests/site.pp @ 264:ea72ea1f7320
Update Hiera to fix warnings
Also removed "use virtual packages" setting because I don't
remember why we have it (other than it being an old default
that changed) and it could be useful if it does what I think
it does!
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 29 Dec 2019 16:47:31 +0000 |
parents | e3aeb8761950 |
children |
comparison
equal
deleted
inserted
replaced
263:f99974dc0f1a | 264:ea72ea1f7320 |
---|---|
1 Exec { path => "/usr/bin:/usr/sbin/:/bin:/sbin" } | 1 Exec { path => "/usr/bin:/usr/sbin/:/bin:/sbin" } |
2 | |
3 if versioncmp($::puppetversion, '3.6.1') >= 0 { | |
4 $allow_virtual_packages = hiera('allow_virtual_packages', false) | |
5 | |
6 Package { | |
7 allow_virtual => $allow_virtual_packages, | |
8 } | |
9 } |