19 lines
369 B
YAML
19 lines
369 B
YAML
|
# 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
|
||
|
|