From 7d1b0e0807dfc9a023ea9412684bae5d552ef350 Mon Sep 17 00:00:00 2001 From: David Wilson Date: Sun, 27 Jan 2019 01:33:44 +0000 Subject: [PATCH] issue #477: Ansible 2.3 did not support gather_facts min subset. --- tests/ansible/integration/action/remote_expand_user.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ansible/integration/action/remote_expand_user.yml b/tests/ansible/integration/action/remote_expand_user.yml index 859902643..e524a7a18 100644 --- a/tests/ansible/integration/action/remote_expand_user.yml +++ b/tests/ansible/integration/action/remote_expand_user.yml @@ -8,12 +8,12 @@ - name: "Find out root's homedir." # Runs first because it blats regular Ansible facts with junk, so # non-become run fixes that up. - setup: gather_subset=min + setup: become: true register: root_facts - name: "Find regular homedir" - setup: gather_subset=min + setup: register: user_facts # ------------------------