Skip to content

Commit

Permalink
Make sure common tasks are called when running only one role
Browse files Browse the repository at this point in the history
  • Loading branch information
arodier committed Dec 7, 2023
1 parent b482d17 commit 77a9847
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions roles/common-init/tasks/install/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
---

- name: Load and merge user and default settings
ansible.builtin.include_tasks: install/load-defaults.yml
ansible.builtin.include_tasks:
file: install/load-defaults.yml
apply:
tags: always
tags: always

- name: Parse external IP address types
ansible.builtin.include_tasks: install/external-ips.yml
ansible.builtin.include_tasks:
file: install/external-ips.yml
apply:
tags: always
tags: always

0 comments on commit 77a9847

Please sign in to comment.