From 426327edfc8151ba79a4ff691c8ae00cd0d4e565 Mon Sep 17 00:00:00 2001 From: "johan.largy" Date: Thu, 13 Oct 2022 10:15:30 +0200 Subject: [PATCH] scrip doku --- sio2/sisr2/40-Ansible/doku/main.yaml | 56 ++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 sio2/sisr2/40-Ansible/doku/main.yaml diff --git a/sio2/sisr2/40-Ansible/doku/main.yaml b/sio2/sisr2/40-Ansible/doku/main.yaml new file mode 100644 index 0000000..2e46c31 --- /dev/null +++ b/sio2/sisr2/40-Ansible/doku/main.yaml @@ -0,0 +1,56 @@ +--- +- name: installation apache2, php, php-xml, php-gd, php-mbstring + apt: + name: + - apache2 + - php + - php-gd + - php-mbstring + - php-xml + state: present + +- name: recuperation archive et decompression dans /tmp + unarchive: + src: http://depl/store/dokuwiki-stable.tgz + dest: /var/www/html + remote_src: yes + +- name: renommer le dossier et deplacer + stat: + path: /var/www/html/dokuwiki-2022-07-31a + register: dokuwiki_status + +- name: check si dokuwiki deja installe + stat: + path: /var/www/html/doku + register: doku_status + +- name: sortie si dokuwiki est deja installe + fail: + msg: "dokuwiki deja installe dans /var/www/html/doku" + when: doku_status.stat.exists + +- name: renomme dokuwiki-2022-07-31a + command: "mv /var/www/html/dokuwiki-2022-07-31a /var/www/html/doku" + when: dokuwiki_status.stat.exists + +- name: les droits dokuwiki + file: + path: /var/www/html/doku + state: directory + recurse: yes + owner: root + group: root + mode: 0755 + +- name: droits de www-data + file: + path: "/var/www/html/doku/{{ item }}" + state: directory + recurse: yes + owner: www-data + group: www-data + with_items: + - data + - lib + - conf