From 76fd2eaacc202ab5681d23596ed0f3d25216bb9f Mon Sep 17 00:00:00 2001 From: Luke Short Date: Fri, 7 Feb 2020 10:51:11 -0500 Subject: [PATCH] Insert hosts entries to the beginning of the file. This ensures that the first host entry found for a host will use what is generated by TripleO (if applicable). Change-Id: I3a4883bc0c8dfa480ce5fd10ec40f3a9f0cff217 Closes-Bug: #1861035 Signed-off-by: Luke Short --- tripleo_ansible/roles/tripleo_hosts_entries/tasks/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tripleo_ansible/roles/tripleo_hosts_entries/tasks/main.yml b/tripleo_ansible/roles/tripleo_hosts_entries/tasks/main.yml index 400f3dbba..4baef8946 100644 --- a/tripleo_ansible/roles/tripleo_hosts_entries/tasks/main.yml +++ b/tripleo_ansible/roles/tripleo_hosts_entries/tasks/main.yml @@ -59,6 +59,8 @@ blockinfile: create: true path: "{{ tripleo_hosts_entries_hosts_path }}" + # BOF denotes the beginning of the file. + insertbefore: BOF block: "{{ tripleo_hosts_entries_block }}" tags: - tripleo_hosts_entries