From f04324f5f659a936e2d1fb8cce04c2674c8b6c02 Mon Sep 17 00:00:00 2001 From: Nathan Genret Date: Fri, 15 Nov 2024 08:41:32 +0100 Subject: [PATCH] =?UTF-8?q?=09nouveau=20fichier=C2=A0:=20ap32-prod/ansible?= =?UTF-8?q?/apbase.yml=20=09nouveau=20fichier=C2=A0:=20ap32-prod/ansible/a?= =?UTF-8?q?pdb.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ap32-prod/ansible/apbase.yml | 31 +++++++++++++++++++++++++++++ ap32-prod/ansible/apdb.yml | 38 ++++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 ap32-prod/ansible/apbase.yml create mode 100644 ap32-prod/ansible/apdb.yml diff --git a/ap32-prod/ansible/apbase.yml b/ap32-prod/ansible/apbase.yml new file mode 100644 index 0000000..2a7ac23 --- /dev/null +++ b/ap32-prod/ansible/apbase.yml @@ -0,0 +1,31 @@ +--- +- 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 diff --git a/ap32-prod/ansible/apdb.yml b/ap32-prod/ansible/apdb.yml new file mode 100644 index 0000000..82337d9 --- /dev/null +++ b/ap32-prod/ansible/apdb.yml @@ -0,0 +1,38 @@ +--- +- hosts: all + become: true + + + tasks: + - name: installation extensions python + apt: + name: python3-pymysql + state: present + + - name: Create a new database + community.mysql.mysql_db: + name: sdis29 + state: present + login_unix_socket: /run/mysqld/mysqld.sock + + - name: Create a new user + community.mysql.mysql_user: + name: admin + password: Azerty1+ + priv: 'sdis29.*:ALL' + state: present + login_unix_socket: /run/mysqld/mysqld.sock + + - name: + copy: + src: sdis29.sql + dest: /tmp/ + + + + - name: Import database + community.mysql.mysql_db: + name: sdis29 + state: import + target: /tmp/sdis29.sql + login_unix_socket: /run/mysqld/mysqld.sock