Deploy network interfaces from LDAP

Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
2021-06-04 17:02:54 +02:00
parent 50cb4cfc75
commit f1ac6f269b
18 changed files with 367 additions and 0 deletions

View File

@ -8,3 +8,12 @@
register: apt_result
retries: 3
until: apt_result is succeeded
- name: Remove cloud-init
apt:
name: cloud-init
state: absent
purge: true
register: apt_result
retries: 3
until: apt_result is succeeded