diff options
author | varac <varacanero@zeromail.org> | 2013-10-17 16:54:02 +0200 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2013-10-17 16:54:02 +0200 |
commit | 1cb05456bdf659ae8869abd166fb7afc3e2345c8 (patch) | |
tree | e72e28585b694e8c09d3018314c971d1135a91c6 /puppet/manifests/setup.pp | |
parent | adbecc3cacc557e5d62546cbb203fdbbe3d54e3b (diff) | |
parent | 99df31cdd58ca60b90c0098b126903e2d8251128 (diff) |
Merge branch 'feature/4158_vagrant__support_other_provider' into develop
Diffstat (limited to 'puppet/manifests/setup.pp')
-rw-r--r-- | puppet/manifests/setup.pp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/puppet/manifests/setup.pp b/puppet/manifests/setup.pp index ba58e728..84124f5a 100644 --- a/puppet/manifests/setup.pp +++ b/puppet/manifests/setup.pp @@ -5,6 +5,8 @@ $services = '' Exec { path => '/usr/bin:/usr/sbin/:/bin:/sbin:/usr/local/bin:/usr/local/sbin' } +include site_config::params + include concat::setup include site_config::hosts @@ -26,7 +28,7 @@ if hiera('squid_deb_proxy_client', false) { # we need to include shorewall::interface{eth0} in setup.pp so # packages can be installed during main puppetrun, even before shorewall # is configured completly -if ( $::virtual == 'virtualbox' ) { +if ( $::site_config::params::environment == 'local' ) { include site_config::vagrant } |