* Test playbook working as expected

This commit is contained in:
shockrah 2021-12-12 22:04:11 -08:00
parent 7efec03023
commit 8f029e989f

View File

@ -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