changed proxy_host default value from false to undef. fixes #211
This commit is contained in:
parent
9b16583964
commit
0207fcd19a
1 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@
|
|||
class apt(
|
||||
$always_apt_update = false,
|
||||
$disable_keys = undef,
|
||||
$proxy_host = false,
|
||||
$proxy_host = undef,
|
||||
$proxy_port = '8080',
|
||||
$purge_sources_list = false,
|
||||
$purge_sources_list_d = false,
|
||||
|
@ -103,7 +103,7 @@ class apt(
|
|||
}
|
||||
|
||||
$proxy_set = $proxy_host ? {
|
||||
false => absent,
|
||||
undef => absent,
|
||||
default => present
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue