Skip to content
Snippets Groups Projects
Commit e4ceda16 authored by Jörg Sachse's avatar Jörg Sachse
Browse files

feat: disable obsolete caching proxy

parent b6e38828
No related branches found
No related tags found
No related merge requests found
Pipeline #5527 failed
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
mode: "0644" mode: "0644"
owner: "root" owner: "root"
group: "root" group: "root"
state: present state: absent
block: | block: |
### HTTP: ### HTTP:
# http_proxy=http://<Benutzername>:<Passwort>@<Proxy>:<Port> # http_proxy=http://<Benutzername>:<Passwort>@<Proxy>:<Port>
...@@ -29,3 +29,4 @@ ...@@ -29,3 +29,4 @@
ansible.builtin.lineinfile: ansible.builtin.lineinfile:
dest: "/etc/apt/apt.conf.d/70debconf" dest: "/etc/apt/apt.conf.d/70debconf"
line: 'Acquire::http::Proxy { "http://{{ vault_proxy_hostname }}.{{ vault_proxy_domain }}:{{ vault_proxy_http_port }}" };' line: 'Acquire::http::Proxy { "http://{{ vault_proxy_hostname }}.{{ vault_proxy_domain }}:{{ vault_proxy_http_port }}" };'
state: absent
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
ansible.builtin.include_vars: "{{ role_path }}/../ansible_vaults/{{ role_name }}/{{ item }}" ansible.builtin.include_vars: "{{ role_path }}/../ansible_vaults/{{ role_name }}/{{ item }}"
loop: loop:
- "iptables.vault" - "iptables.vault"
- "proxy.vault"
- "check_ie_sample.vault" - "check_ie_sample.vault"
# - "subapp.vault" # - "subapp.vault"
- "users.vault" - "users.vault"
......
---
vault_proxy_hostname: "{{ 'PRODUCTION_PROXY_HOSTNAME' if not 'test' in ansible_hostname else 'TEST_PROXY_HOSTNAME' }}"
vault_proxy_domain: "example.com"
vault_proxy_http_port: "PORT_NUMBER"
vault_proxy_https_port: "PORT_NUMBER"
vault_no_proxy: "LIST, OF, FQDNs, THAT, SHOULD, BE, REACHED, DIRECTLY"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment