diff options
| author | boom2 <blizzack@blizzack.com> | 2023-12-17 09:08:55 -0500 |
|---|---|---|
| committer | boom2 <blizzack@blizzack.com> | 2023-12-17 09:08:55 -0500 |
| commit | 51b282b65f1d36b547206b00bdd2a29c880da44e (patch) | |
| tree | 8ebe4461436de87d3e31ab82b0c720d3ee961c08 /ansible-practice/02-playbook-list-files.yml | |
| parent | f30709d7dbe88d82c4df66c476db36cb5c0ce903 (diff) | |
- add simple python regex tester w/ an accompanied ansible test
- add create user ansible test
- organized scattered referenced URLs into one place
Diffstat (limited to 'ansible-practice/02-playbook-list-files.yml')
| -rw-r--r-- | ansible-practice/02-playbook-list-files.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ansible-practice/02-playbook-list-files.yml b/ansible-practice/02-playbook-list-files.yml index 1163a2d..9240059 100644 --- a/ansible-practice/02-playbook-list-files.yml +++ b/ansible-practice/02-playbook-list-files.yml @@ -8,7 +8,7 @@ # connection: local tasks: - name: "just execute a ls -lrt command" - shell: "ls -lrt" + ansible.builtin.shell: "ls -lrt" register: "output" - debug: var=output.stdout_lines |
