Compare commits

...

2 commits

Author SHA1 Message Date
234b7c056c
feat: Ignore Ansible inventory
Signed-off-by: Julien Riou <julien@riou.xyz>
2025-05-18 11:59:07 +02:00
e9b8b59306
fix: Facts were failing at start
Signed-off-by: Julien Riou <julien@riou.xyz>
2025-05-18 11:57:56 +02:00
2 changed files with 4 additions and 0 deletions

1
.gitignore vendored
View file

@ -1,6 +1,7 @@
ansible/venv
ansible/ssh_key
ansible/group_vars
ansible/inventory
tofu/clouds.yaml
tofu/ovh.conf
tofu/terraform.tfstate

View file

@ -2,6 +2,7 @@
become: true
hosts:
- galene
gather_facts: false
tasks:
- name: Wait for infrastructure to be ready
ansible.builtin.ping:
@ -12,6 +13,8 @@
ansible.builtin.apt:
update_cache: true
upgrade: full
retries: 30
delay: 10
- name: Install galene
become: true