Skip to content

Commit

Permalink
changed proxy_host default value from false to undef. fixes puppetlab…
Browse files Browse the repository at this point in the history
  • Loading branch information
Konrad Lother committed Jan 29, 2014
1 parent 9b16583 commit 0207fcd
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 @@ -103,7 +103,7 @@
}

$proxy_set = $proxy_host ? {
false => absent,
undef => absent,
default => present
}

Expand Down

0 comments on commit 0207fcd

Please sign in to comment.