summaryrefslogtreecommitdiff
path: root/puppet/modules/apt/manifests/proxy_client.pp
diff options
context:
space:
mode:
Diffstat (limited to 'puppet/modules/apt/manifests/proxy_client.pp')
-rw-r--r--puppet/modules/apt/manifests/proxy_client.pp9
1 files changed, 9 insertions, 0 deletions
diff --git a/puppet/modules/apt/manifests/proxy_client.pp b/puppet/modules/apt/manifests/proxy_client.pp
new file mode 100644
index 00000000..9ba79f23
--- /dev/null
+++ b/puppet/modules/apt/manifests/proxy_client.pp
@@ -0,0 +1,9 @@
+class apt::proxy_client(
+ $proxy = 'http://localhost',
+ $port = '3142',
+){
+
+ apt_conf { '20proxy':
+ content => template('apt/20proxy.erb'),
+ }
+}