From 6a83e981a278df74481fcbf78114e1556ccc2ac7 Mon Sep 17 00:00:00 2001 From: Raphael Dannecker Date: Sat, 24 Jan 2026 12:40:55 +0100 Subject: [PATCH] Add http_proxy to host squid --- roles/vm_base/tasks/main.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/roles/vm_base/tasks/main.yml b/roles/vm_base/tasks/main.yml index 83503af..ae081a6 100644 --- a/roles/vm_base/tasks/main.yml +++ b/roles/vm_base/tasks/main.yml @@ -48,3 +48,12 @@ regexp: '^GRUB_TIMEOUT=.*' line: GRUB_TIMEOUT=0 notify: Update grub + +- name: Deploy http proxy config + ansible.builtin.copy: + dest: /etc/environment.d/10-lmn-proxy.conf + mode: '0644' + content: | + http_proxy="http://192.168.122.1:3128" + https_proxy="http://192.168.122.1:3128" + ftp_proxy="http://192.168.122.1:3128"