From e06fc8726f6361fbdb9e7210f3f001555221aff5 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Fri, 2 Dec 2016 13:11:45 -0600 Subject: [PATCH] Ensure prep tasks have 'always' tag Some of the prep tasks for the RHEL 7 content did not have the 'always' tag, which caused playbooks to fail when using a tag, like 'auth'. Closes-Bug: 1646934 Change-Id: I651b5ee964e916b9d7add1d1d5f9dbb139eb6be3 --- tasks/rhel7stig/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tasks/rhel7stig/main.yml b/tasks/rhel7stig/main.yml index 33865476..8e6046c3 100644 --- a/tasks/rhel7stig/main.yml +++ b/tasks/rhel7stig/main.yml @@ -19,6 +19,8 @@ changed_when: False when: - not check_mode | bool + tags: + - always - name: Set a fact for the temporary directory set_fact: @@ -26,6 +28,8 @@ changed_when: False when: - not check_mode | bool + tags: + - always # Package installations and removals must come first so that configuration # changes can be made later. @@ -59,3 +63,5 @@ changed_when: False when: - not check_mode | bool + tags: + - always