diff --git a/playbooks/beta/test-web-user.yml b/playbooks/beta/test-web-user.yml new file mode 100644 index 0000000..93d1fd7 --- /dev/null +++ b/playbooks/beta/test-web-user.yml @@ -0,0 +1,18 @@ +# This playbooks basically just ensures that the web user account is behaving +# correctly and is installed in the correct places +--- +- hosts: web + user: web + tasks: + - name: Echo something + shell: echo Hello + register: hi + + - debug: var=hi.stdout + + - name: Who am I + shell: whoami + register: whoami + + - debug: var=whoami.stdout_lines +