premier commit ap4
This commit is contained in:
commit
5d2b6c6660
9
ansible/local.yml
Normal file
9
ansible/local.yml
Normal file
@ -0,0 +1,9 @@
|
||||
- hosts: localhost
|
||||
connection: local
|
||||
become: yes
|
||||
become_method: sudo
|
||||
become_user: root
|
||||
roles:
|
||||
- paquet
|
||||
- doku
|
||||
- adminer
|
20
ansible/roles/adminer/tasks/main.yml
Normal file
20
ansible/roles/adminer/tasks/main.yml
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
- name: récupération de adminer.php
|
||||
get_url:
|
||||
url: http://www.adminer.org/latest.php
|
||||
dest: /var/www/html/adminer.php
|
||||
|
||||
- name: droit adminer data
|
||||
file:
|
||||
path: /var/www/html/adminer
|
||||
state: directory
|
||||
owner: www-data
|
||||
group: www-data
|
||||
recurse: yes
|
||||
|
||||
- name: droit 755
|
||||
file:
|
||||
path: /var/www/html/adminer
|
||||
state: directory
|
||||
mode: '0755'
|
||||
recurse: yes
|
58
ansible/roles/doku/tasks/main.yml
Normal file
58
ansible/roles/doku/tasks/main.yml
Normal file
@ -0,0 +1,58 @@
|
||||
- name: recuperation dokuwiki-stable.tgz depuis machine depl
|
||||
get_url:
|
||||
url: http://depl.sio.lan/store/dokuwiki-stable.tgz
|
||||
dest: /tmp
|
||||
|
||||
- name: Extraction archive
|
||||
unarchive:
|
||||
src: /tmp/dokuwiki-stable.tgz
|
||||
dest: /var/www/html/
|
||||
remote_src: yes
|
||||
|
||||
- name: stat rept
|
||||
stat:
|
||||
path: /var/www/html/dokuwiki-2020-07-29
|
||||
register: rept_stat
|
||||
|
||||
- name: Renommage de dokuwiki-stable
|
||||
command: mv /var/www/html/dokuwiki-2020-07-29 /var/www/html/doku
|
||||
when: not rept_stat.stat.exists
|
||||
|
||||
- name: Droit root recursive
|
||||
file:
|
||||
path: /var/www/html/doku
|
||||
state: directory
|
||||
recurse: yes
|
||||
owner: root
|
||||
group: root
|
||||
|
||||
- name: droit 755
|
||||
file:
|
||||
path: /var/www/html/doku
|
||||
state: directory
|
||||
mode: '0755'
|
||||
recurse: yes
|
||||
|
||||
- name: droit apache data
|
||||
file:
|
||||
path: /var/www/html/doku/data
|
||||
state: directory
|
||||
owner: www-data
|
||||
group: www-data
|
||||
recurse: yes
|
||||
|
||||
- name: droit apache lib
|
||||
file:
|
||||
path: /var/www/html/doku/lib
|
||||
state: directory
|
||||
owner: www-data
|
||||
group: www-data
|
||||
recurse: yes
|
||||
|
||||
- name: droit apache conf
|
||||
file:
|
||||
path: /var/www/html/doku/conf
|
||||
state: directory
|
||||
owner: www-data
|
||||
group: www-data
|
||||
recurse: yes
|
29
ansible/roles/paquet/tasks/main.yml
Normal file
29
ansible/roles/paquet/tasks/main.yml
Normal file
@ -0,0 +1,29 @@
|
||||
- name: installation apache2
|
||||
apt:
|
||||
name: apache2
|
||||
state: present
|
||||
|
||||
- name: installation php
|
||||
apt:
|
||||
name: php7.4
|
||||
state: present
|
||||
|
||||
- name: installation php-mbstring
|
||||
apt:
|
||||
name: php-mbstring
|
||||
state: present
|
||||
|
||||
- name: installation php-gd
|
||||
apt:
|
||||
name: php-gd
|
||||
state: present
|
||||
|
||||
- name: installation php-xml
|
||||
apt:
|
||||
name: php7.4-xml
|
||||
state: present
|
||||
|
||||
- name: Installation de adminer
|
||||
apt:
|
||||
name: adminer
|
||||
state: present
|
Loading…
x
Reference in New Issue
Block a user