ansible dbb

This commit is contained in:
root
2023-11-23 13:06:41 +01:00
parent afe67b5e02
commit 9a85d79e62
4 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
---
- name: install ap et bd
#hosts: ap31-prod, ap31-test
#hosts: ap31-prodt
hosts: all
# become_method: sudo
# remote_user: debian
become: yes
tasks:
- name: install apache2, php, mariadb-server, python3-pymysql
ansible.builtin.apt:
name:
- apache2
- php
- mariadb-server
- python3-pymysql
state: present