summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/playbook/user.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/playbook/user.yml')
-rw-r--r--test/integration/targets/playbook/user.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/integration/targets/playbook/user.yml b/test/integration/targets/playbook/user.yml
new file mode 100644
index 0000000..8b4029b
--- /dev/null
+++ b/test/integration/targets/playbook/user.yml
@@ -0,0 +1,23 @@
+- hosts: localhost
+ tasks:
+ - command: whoami
+ register: whoami
+
+ - assert:
+ that:
+ - whoami is successful
+
+ - set_fact:
+ me: "{{ whoami.stdout }}"
+
+- hosts: localhost
+ user: "{{ me }}"
+ tasks:
+ - debug:
+ msg: worked with user ({{ me }})
+
+- hosts: localhost
+ remote_user: "{{ me }}"
+ tasks:
+ - debug:
+ msg: worked with remote_user ({{ me }})