Feat: maj du deploiement (testé)

This commit is contained in:
2022-09-06 19:53:17 +02:00
parent 211b7d5725
commit b365759be6
11 changed files with 130 additions and 59 deletions

View File

@@ -1,17 +1,17 @@
---
- name: add users
user:
name: "{{ item.name }}"
name: "{{ item }}"
create_home: true
password: "{{ lookup('password', './pass/' + item.name + '_pass length=10 chars=ascii_letters') | password_hash('sha512') }}"
password: "{{ lookup('password', './pass/' + item + '_pass length=10 chars=ascii_letters') | password_hash('sha512') }}"
update_password: on_create
with_items: "{{ users }}"
register: returned
- name: create public_html
file:
path: "/home/{{ item.name}}/public_html/"
owner: "{{ item.name }}"
path: "/home/{{ item}}/public_html/"
owner: "{{ item }}"
group: www-data
state: directory
with_items: "{{ users }}"
@@ -19,13 +19,13 @@
- name: Sets Up Index page
template:
src: "files/index.html.j2"
dest: "/home/{{ item.name }}/public_html/index.html"
dest: "/home/{{ item }}/public_html/index.html"
mode: 774
with_items: "{{ users }}"
- name: create database
mysql_db:
db: "{{ item.name }}"
db: "{{ item }}"
state: present
login_user: root
login_password: "{{ mysql_root_password }}"
@@ -33,9 +33,9 @@
- name: create db user
mysql_user:
user: "{{ item.name }}"
password: "{{ lookup('password', './pass/' + item.name + '_sql length=10 chars=ascii_letters') | password_hash('sha512') }}"
priv: "{{ item.name + '.*:ALL,GRANT' }}"
user: "{{ item }}"
password: "{{ lookup('password', './pass/' + item + '_sql length=10 chars=ascii_letters') | password_hash('sha512') }}"
priv: "{{ item + '.*:ALL,GRANT' }}"
login_user: root
login_password: "{{ mysql_root_password }}"
state: present

View File

@@ -1,12 +1,14 @@
---
- name: Install prerequisites
apt: name={{ item }} update_cache=yes state=latest force_apt_get=yes
loop: [ 'aptitude' ]
#Apache Configuration
- name: Install LAMP Packages
apt: name={{ item }} update_cache=yes state=latest
loop: [ 'apache2', 'mysql-server', 'python3-pymysql', 'php', 'php-mysql', 'libapache2-mod-php' ]
loop:
- 'apache2'
- 'mariadb-server'
- 'python3-pymysql'
- 'php'
- 'php-mysql'
- 'libapache2-mod-php'
- name: Create document root
file:
@@ -30,46 +32,46 @@
when: disable_default
notify: Reload Apache
# MySQL Configuration
# MySQL Configuration
- name: Start MariaDB service
service:
name: mariadb
state: started
- name: Sets the root password
mysql_user:
name: root
password: "{{ mysql_root_password }}"
login_unix_socket: /var/run/mysqld/mysqld.sock
name: root
password: "{{ mysql_root_password }}"
login_unix_socket: /var/run/mysqld/mysqld.sock
ignore_errors: yes
- name: Removes all anonymous user accounts
mysql_user:
name: ''
host_all: yes
state: absent
login_user: root
login_password: "{{ mysql_root_password }}"
name: ''
host_all: yes
state: absent
login_user: root
login_password: "{{ mysql_root_password }}"
- name: Removes the MySQL test database
mysql_db:
name: test
state: absent
login_user: root
login_password: "{{ mysql_root_password }}"
- name: "UFW - Allow HTTP on port {{ http_port }}"
ufw:
rule: allow
port: "{{ http_port }}"
proto: tcp
name: test
state: absent
login_user: root
login_password: "{{ mysql_root_password }}"
- name: Sets Up PHP Info Page
template:
src: "files/info.php.j2"
dest: "/var/www/{{ http_host }}/info.php"
src: "files/info.php.j2"
dest: "/var/www/{{ http_host }}/info.php"
- name: Sets Up Index page
template:
src: "files/index.html.j2"
dest: "/var/www/{{ http_host }}/index.html"
src: "files/root_index.html.j2"
dest: "/var/www/{{ http_host }}/index.html"
vars:
item:
name: "la SNT"
item:
- "{{ matiere }}"
- name: Enable userdir
shell: /usr/sbin/a2enmod userdir