ajout tp doku
This commit is contained in:
parent
365ac0717a
commit
e88bb6e440
9
sio2/SISR/Ansible/dokuw/hosts
Normal file
9
sio2/SISR/Ansible/dokuw/hosts
Normal file
@ -0,0 +1,9 @@
|
||||
[adm]
|
||||
infra
|
||||
|
||||
[web]
|
||||
web1
|
||||
web2
|
||||
|
||||
[doc]
|
||||
doku
|
6
sio2/SISR/Ansible/dokuw/local.yml
Normal file
6
sio2/SISR/Ansible/dokuw/local.yml
Normal file
@ -0,0 +1,6 @@
|
||||
|
||||
- hosts: doku
|
||||
roles:
|
||||
- web
|
||||
- doku
|
||||
|
18
sio2/SISR/Ansible/dokuw/roles/doku/main.yml
Normal file
18
sio2/SISR/Ansible/dokuw/roles/doku/main.yml
Normal file
@ -0,0 +1,18 @@
|
||||
vars:
|
||||
- chemin_fichier: /var/www/html/doku
|
||||
|
||||
- name: recuperation dokuwiki-stable.tgz depuis machine depl
|
||||
get_url:
|
||||
url: http://depl/store/dokuwiki-stable.tgz
|
||||
dest: /tmp/
|
||||
|
||||
- name: Extraction archive
|
||||
ansible.builtin.unarchive:
|
||||
src: /tmp/dokuwiki-stable.tgz
|
||||
dest: /var/www/html/
|
||||
|
||||
- name: changer propriétaire du fichier var/www/html/doku
|
||||
file:
|
||||
path: "{{ chemin_fichier }}"
|
||||
owner: www-data:www-data data lib conf
|
||||
become: true
|
37
sio2/SISR/Ansible/dokuw/roles/doku/tasks/main.yml
Normal file
37
sio2/SISR/Ansible/dokuw/roles/doku/tasks/main.yml
Normal file
@ -0,0 +1,37 @@
|
||||
- name: 1. recuperation dokuwiki-stable.tgz depuis machine depl
|
||||
get_url:
|
||||
url: http://depl/store/dokuwiki-stable.tgz
|
||||
dest: /tmp
|
||||
|
||||
- name: 2. Extraction archive dokuwiki-stage.tgz
|
||||
unarchive:
|
||||
src: /tmp/dokuwiki-stable.tgz
|
||||
dest: /var/www/html/
|
||||
remote_src: yes
|
||||
|
||||
- name: 3. stat dokuwiki
|
||||
stat:
|
||||
path: /var/www/html/dokuwiki-2023-04-04
|
||||
register: doku_stat
|
||||
|
||||
- name: 4. On renomme doku-v... en doku
|
||||
command: mv /var/www/html/dokuwiki-2023-04-04 /var/www/html/doku
|
||||
when: doku_stat.stat.exists
|
||||
|
||||
- name: 5. Changer propritaire group et permissions
|
||||
file:
|
||||
path: /var/www/html/doku
|
||||
owner: root
|
||||
group: root
|
||||
mode: '0755'
|
||||
recurse: yes
|
||||
|
||||
- name: 6. Changer propritaire. group et permissions
|
||||
file:
|
||||
path: /var/www/html/doku
|
||||
owner: www-data
|
||||
group: www-data
|
||||
recurse: yes
|
||||
# mode: '755'
|
||||
|
||||
|
13
sio2/SISR/Ansible/dokuw/roles/web/tasks/main.yml
Normal file
13
sio2/SISR/Ansible/dokuw/roles/web/tasks/main.yml
Normal file
@ -0,0 +1,13 @@
|
||||
- name: 1. installe apache2 php et ces dependances
|
||||
apt:
|
||||
name:
|
||||
- apache2
|
||||
- php
|
||||
# - php-gd
|
||||
- php-mbstring
|
||||
state: present
|
||||
|
||||
- name: 2. lance Apache
|
||||
service:
|
||||
name: apache2
|
||||
state: started
|
Loading…
x
Reference in New Issue
Block a user