Skip to content

Commit

Permalink
Merge pull request #215 from lotherk/proxy_val_no_boolean
Browse files Browse the repository at this point in the history
changed proxy_host default value from true to undef. fixes #211
  • Loading branch information
hunner committed Feb 25, 2014
2 parents 4c9174e + 5285b58 commit 0e82e54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -121,7 +121,7 @@
}
$proxy_set = $proxy_host ? {
false => absent,
undef => absent,
default => present
}
Expand Down

0 comments on commit 0e82e54

Please sign in to comment.