fix: nfs share working now
This commit is contained in:
parent
2bffbbedc0
commit
1371b6b970
@ -13,16 +13,3 @@
|
|||||||
apt:
|
apt:
|
||||||
name: nfs-common
|
name: nfs-common
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
- name: montage nfs pour word press
|
|
||||||
blockinfile:
|
|
||||||
path: /etc/fstab
|
|
||||||
block: |
|
|
||||||
192.168.102.253:/home/wordpress /var/www/html nfs soft,timeo=5,intr,rsize=8192,wsize=8192,wsize=8192 0 0
|
|
||||||
|
|
||||||
#- name: monte export wordpress
|
|
||||||
# ansible.posix.mount:
|
|
||||||
# path: /var/www/html
|
|
||||||
# state: mounted
|
|
||||||
# fstype: nfs
|
|
||||||
# src: 192.168.102.253:/exports/wordpress
|
|
||||||
|
7
roles/post-lb/README.md
Normal file
7
roles/post-lb/README.md
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# Rôle Post
|
||||||
|
|
||||||
|
Le rôle "post" copie la configuration des interfaces des cartes réseaux nécessaires selon la machine sur laquelle on exécute le rôle. Il place cette configuration dans /etc/network/interfaces.
|
||||||
|
|
||||||
|
Ensuite, on copie le fichier "resolv.conf" dans /etc/ lorsque que la machine qui exécute le rôle n'est pas "s-adm", "s-proxy" ou "r-vp2".
|
||||||
|
|
||||||
|
Cependant, si la machine qui exécute le rôle est "s-proxy", on copie le fichier "resolv.conf.s-proxy" dans /etc/resolv.conf
|
21
roles/post-lb/files/interfaces.s-lb-web1
Normal file
21
roles/post-lb/files/interfaces.s-lb-web1
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
### 0.2 - putconf - jeudi 7 janvier 2016, 16:18:49 (UTC+0100)
|
||||||
|
|
||||||
|
# The loopback network interface
|
||||||
|
auto lo
|
||||||
|
iface lo inet loopback
|
||||||
|
|
||||||
|
# carte n-adm
|
||||||
|
allow-hotplug enp0s3
|
||||||
|
iface enp0s3 inet static
|
||||||
|
address 192.168.99.101/24
|
||||||
|
|
||||||
|
# Réseau n-dmz-lb
|
||||||
|
allow-hotplug enp0s8
|
||||||
|
iface enp0s8 inet static
|
||||||
|
address 192.168.101.1/24
|
||||||
|
|
||||||
|
# réseau n-dmz-db
|
||||||
|
allow-hotplug enp0s9
|
||||||
|
iface enp0s9 inet static
|
||||||
|
address 192.168.102.1/24
|
||||||
|
post-up mount -o rw 192.168.102.253:/home/wordpress /var/www/html
|
21
roles/post-lb/files/interfaces.s-lb-web2
Normal file
21
roles/post-lb/files/interfaces.s-lb-web2
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
### 0.2 - putconf - jeudi 7 janvier 2016, 16:18:49 (UTC+0100)
|
||||||
|
|
||||||
|
# The loopback network interface
|
||||||
|
auto lo
|
||||||
|
iface lo inet loopback
|
||||||
|
|
||||||
|
# carte n-adm
|
||||||
|
allow-hotplug enp0s3
|
||||||
|
iface enp0s3 inet static
|
||||||
|
address 192.168.99.101/24
|
||||||
|
|
||||||
|
# Réseau n-dmz-lb
|
||||||
|
allow-hotplug enp0s8
|
||||||
|
iface enp0s8 inet static
|
||||||
|
address 192.168.101.1/24
|
||||||
|
|
||||||
|
# réseau n-dmz-db
|
||||||
|
allow-hotplug enp0s9
|
||||||
|
iface enp0s9 inet static
|
||||||
|
address 192.168.102.1/24
|
||||||
|
post-up mount -o rw 192.168.102.253:/home/wordpress /var/www/html
|
24
roles/post-lb/tasks/main.yml
Normal file
24
roles/post-lb/tasks/main.yml
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
- name: Copie interfaces
|
||||||
|
copy: src=interfaces.{{ ansible_hostname }} dest=/etc/network/interfaces
|
||||||
|
|
||||||
|
- name: Copie resolv.conf
|
||||||
|
copy: src=resolv.conf dest=/etc/
|
||||||
|
when: ansible_hostname != "s-adm" and ansible_hostname != "s-proxy"
|
||||||
|
|
||||||
|
- name: pas de chgt resolv.conf pour r-vp2
|
||||||
|
meta: end_play
|
||||||
|
when: ansible_hostname == "r-vp2"
|
||||||
|
|
||||||
|
- name: Copie resolv.conf pour s-proxy
|
||||||
|
copy: src=resolv.conf.s-proxy dest=/etc/resolv.conf
|
||||||
|
when: ansible_hostname == "s-proxy"
|
||||||
|
|
||||||
|
#- name: Confirm
|
||||||
|
# prompt: "<Entree> pour redemarrer ..."
|
||||||
|
|
||||||
|
#- name: Reboot
|
||||||
|
# shell: reboot
|
||||||
|
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
roles:
|
roles:
|
||||||
- base
|
- base
|
||||||
- post
|
- post-lb
|
||||||
- lb-web
|
- lb-web
|
||||||
- snmp-agent
|
- snmp-agent
|
||||||
- ssh-cli
|
- ssh-cli
|
||||||
|
@ -4,7 +4,8 @@
|
|||||||
|
|
||||||
roles:
|
roles:
|
||||||
- base
|
- base
|
||||||
- post
|
- post-lb
|
||||||
- lb-web
|
- lb-web
|
||||||
- snmp-agent
|
- snmp-agent
|
||||||
- ssh-cli
|
- ssh-cli
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user