+ Fixing docs and adding some sane defaults/tests

This commit is contained in:
shockrah
2022-01-23 17:48:58 -08:00
parent 3b2b89db01
commit 1ede679730
4 changed files with 56 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
---
- hosts: leftcoastlab
tasks:
- name: Normal Echo
command: echo Quick test of an echo
register: normal_echo
- debug:
var: normal_echo.stdout
- name: Checking Sudo access
become: yes
command: echo One more test with sudo this time
register: sudo_echo
- debug:
var: sudo_echo.stdout
- debug:
var: sudo_echo.stderr