adding ability to enable/disable https apt repositories
This commit is contained in:
parent
03d82da02d
commit
f7b957bf5e
2 changed files with 4 additions and 2 deletions
|
@ -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 "http://{{ apt_cacher_ng.server_address }}:{{ apt_cacher_ng.server_port }}";
|
||||||
|
Acquire::http::Proxy "{{ apt_cacher_ng.https_proxy_enabled }}";
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
'credentials': '/etc/apt-cacher-ng/security.conf',
|
'credentials': '/etc/apt-cacher-ng/security.conf',
|
||||||
'client_config': '/etc/apt/apt.conf.d/80proxy',
|
'client_config': '/etc/apt/apt.conf.d/80proxy',
|
||||||
'admin_account': 'root',
|
'admin_account': 'root',
|
||||||
'admin_passwd': 'admin'
|
'admin_passwd': 'admin',
|
||||||
|
'https_proxy_enabled': 'false'
|
||||||
},
|
},
|
||||||
}, merge=salt['pillar.get']('apt_cacher_ng')) %}
|
}, merge=salt['pillar.get']('apt_cacher_ng')) %}
|
||||||
|
|
Loading…
Reference in a new issue