-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaybook.yml
34 lines (28 loc) · 1.07 KB
/
playbook.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
- name: playbook inventory.yaml
hosts: all
tasks:
- name: generation fichier inventory.yaml
script: convert.sh
- name: config git
shell:
cmd: git config --global user.name "ab-morfik" && git config --global user.email [email protected]
- name: Cloner le dépôt Git si ce n'est pas déjà fait
git:
repo: '[email protected]:ab-morfik/inv.git'
dest: '.'
version: 'main' # Branche que tu souhaites utiliser
update: no
- name: Ajouter le fichier au dépôt Git local
ansible.builtin.command:
cmd: git add inventory.yaml
#chdir: inv/ # Répertoire local du dépôt Git
- name: Faire un commit dans le dépôt Git local
ansible.builtin.command:
cmd: git commit -m "Mise a jour du fichier inventaire" inventory.yaml
#chdir: inv/ # Répertoire local du dépôt Git
ignore_errors: yes
- name: Pousser les modifications vers le dépôt distant
ansible.builtin.command:
cmd: git push -u origin main
#chdir: inv/