Switch empty string to undef

Empty strings were still making that the conditions
of templates were considered true.
This commit is contained in:
Yolanda Robla 2015-03-18 13:43:35 +01:00
parent 4227d04021
commit e255c1e7b9
1 changed files with 7 additions and 7 deletions

View File

@ -17,15 +17,15 @@
class puppet (
$pin_puppet = '3.',
$enable_puppet = false,
$http_proxy = '',
$agent_http_proxy_host = '',
$agent_http_proxy_port = '',
$https_proxy = '',
$http_proxy = undef,
$agent_http_proxy_host = undef,
$agent_http_proxy_port = undef,
$https_proxy = undef,
$certname = $::fqdn,
$puppetmaster_server = 'puppetmaster.openstack.org',
$puppet_ca_server = '',
$ca_server = '',
$dns_alt_names = '',
$puppet_ca_server = undef,
$ca_server = undef,
$dns_alt_names = undef,
$environment_path = '/etc/puppet/environments',
$basemodule_path = '/etc/puppet/modules',
$environment_timeout = 0,