From dc9e56adee3748e17a8bb3f089edf08906f0f096 Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 8 Nov 2024 10:25:01 +0100 Subject: [PATCH] modified: apbase.yml --- ansible/apbase.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/ansible/apbase.yml b/ansible/apbase.yml index e69de29..556e60f 100644 --- a/ansible/apbase.yml +++ b/ansible/apbase.yml @@ -0,0 +1,32 @@ +--- +#- name: Install prod/test +- hosts: all + become: true + + tasks: + - name: Parametrage Timezone Europe/Paris + community.general.timezone: + name: Europe/Paris + + - name: Copie apt.conf + copy: + content: | + Acquire::http::Proxy "http://10.121.38.1:8080"; + Acquire::https::Proxy "http://10.121.38.1:8080"; + dest: /etc/apt/apt.conf + + - name: Update and upgrade apt packages + apt: + upgrade: yes + update_cache: yes + cache_valid_time: 86400 #One day + + + - name: Installation paquets + apt: + name: "{{ item }}" + with_items: + - tomcat10 + - mariadb-server + - ant + - qemu-guest-agent