adding ability to enable/disable https apt repositories

This commit is contained in:
Freddy Andersen 2017-01-23 07:36:11 -08:00
parent 03d82da02d
commit f7b957bf5e
2 changed files with 4 additions and 2 deletions

View File

@ -1,2 +1,3 @@
{% from "apt-cacher/ng/map.jinja" import apt_cacher_ng with context %}
{% from "apt-cacher/ng/map.jinja" import apt_cacher_ng with context -%}
Acquire::http::Proxy "http://{{ apt_cacher_ng.server_address }}:{{ apt_cacher_ng.server_port }}";
Acquire::http::Proxy "{{ apt_cacher_ng.https_proxy_enabled }}";

View File

@ -14,6 +14,7 @@
'credentials': '/etc/apt-cacher-ng/security.conf',
'client_config': '/etc/apt/apt.conf.d/80proxy',
'admin_account': 'root',
'admin_passwd': 'admin'
'admin_passwd': 'admin',
'https_proxy_enabled': 'false'
},
}, merge=salt['pillar.get']('apt_cacher_ng')) %}