Skip to content
Snippets Groups Projects
Verified Commit 3ab6b889 authored by Kristian Klausen's avatar Kristian Klausen :tada:
Browse files

networking: Fix missing and broken hcloud-init conditionals

A string is always "true"[1].

[1] https://stackoverflow.com/a/34868470
parent 520f2b65
No related branches found
No related tags found
No related merge requests found
Pipeline #11562 passed
......@@ -48,11 +48,15 @@
command: chroot {{ chroot_path }} systemctl enable hcloud-init
register: chroot_systemd_services
changed_when: "chroot_systemd_services.rc == 0"
when: chroot_path | length != 0 and ("'hcloud' in group_names or inventory_hostname == 'packer-base-image'")
when:
- chroot_path | length != 0
- "'hcloud' in group_names or inventory_hostname == 'packer-base-image'"
- name: start and enable hcloud-init
service: name=hcloud-init daemon_reload=yes state=started enabled=yes
when: chroot_path | length == 0
when:
- chroot_path | length == 0
- "'hcloud' in group_names or inventory_hostname == 'packer-base-image'"
- name: start and enable networkd
service: name=systemd-networkd state=started enabled=yes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment