Commit 9b6acbdb021a68f6e90f23ca28345d4a372ddfce
1 parent
9a779d2a
changement des nom des groupes pour etre plus logique
Showing
1 changed file
with
4 additions
and
4 deletions
Show diff stats
Ansible/MainTask.yml
1 | 1 | --- |
2 | 2 | - name: "Setup des Raspberry pi pour capteur Arduino" |
3 | - hosts: Arduino_init | |
3 | + hosts: arduino_Setup | |
4 | 4 | remote_user: pi |
5 | 5 | become: yes |
6 | 6 | roles: |
7 | 7 | - role: arduino_Setup |
8 | 8 | |
9 | 9 | - name: "Setup des Raspberry pi pour capteur Nucleo" |
10 | - hosts: Nucleo_init | |
10 | + hosts: nucleo_Setup | |
11 | 11 | remote_user: pi |
12 | 12 | become: yes |
13 | 13 | roles: |
14 | 14 | - role: nucleo_Setup |
15 | 15 | |
16 | 16 | - name: "Deploiement de code pour Arduino" |
17 | - hosts: Arduino | |
17 | + hosts: arduino | |
18 | 18 | remote_user: pi |
19 | 19 | become: yes |
20 | 20 | roles: |
21 | 21 | - role: arduino |
22 | 22 | |
23 | 23 | - name: "Deploiement de code pour Nucleo" |
24 | - hosts: Nucleo | |
24 | + hosts: nucleo | |
25 | 25 | remote_user: pi |
26 | 26 | become: yes |
27 | 27 | roles: | ... | ... |