Compare commits

...

7 Commits

3 changed files with 17 additions and 11 deletions

View File

@ -1,11 +1,13 @@
--- ---
- name: - name: installation des paquets web
- apache2 apt:
- php name:
- php-mbstring - apache2
- php-mysql - php
- mariadb-client - php-mbstring
state: present - php-mysql
- mariadb-client
state: present
- name: install nfs-common - name: install nfs-common
apt: apt:
@ -16,11 +18,11 @@
blockinfile: blockinfile:
path: /etc/fstab path: /etc/fstab
block: | block: |
192.168.56.6:/exports/wordpress /var/www/html nfs soft,timeo=5,intr,rsize=8192,wsize=8192,wsize=8192 0 0 192.168.102.253:/exports/wordpress /var/www/html nfs soft,timeo=5,intr,rsize=8192,wsize=8192,wsize=8192 0 0
- name: monte export wordpress - name: monte export wordpress
ansible.posix.mount: ansible.posix.mount:
path: /var/www/html path: /var/www/html
state: mounted state: mounted
fstype: nfs fstype: nfs
src: 192.168.56.6:/exports/wordpress src: 192.168.102.253:/exports/wordpress

View File

@ -14,8 +14,9 @@
name: wireguard-tools name: wireguard-tools
state: present state: present
#- name: copie du fichier de configuration depuis r-vp1
# command: "sshpass -p 'root' scp -r root@192.168.99.112:/root/confwg/wg0-b.conf /etc/wireguard/" - name: copie du fichier de configuration depuis r-vp1
command: "wget http://r-vp1.gsb.adm:8000/wg0-b.conf"
#- name: renommage du fichier de configuration #- name: renommage du fichier de configuration
# command: "mv /etc/wireguard/wg0-b.conf /etc/wireguard/wg0.conf" # command: "mv /etc/wireguard/wg0-b.conf /etc/wireguard/wg0.conf"

View File

@ -39,3 +39,6 @@
name: wg-quick@wg0 name: wg-quick@wg0
enabled: yes enabled: yes
state: restarted state: restarted
- name: ouverture port 8000 pour copie fichier config
command: "cd ~/confwg/ && python3 -m http.server 8000 &"