From bbfa2cf1b599afc17e90990b09ba140e81fa6574 Mon Sep 17 00:00:00 2001 From: Konrad Lother Date: Thu, 30 Jan 2014 00:33:45 +0100 Subject: [PATCH] changed proxy_host default value from true to undef. fixes #211 --- manifests/init.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/init.pp b/manifests/init.pp index b106ad4..364ce8c 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -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 } -- 2.45.2