summaryrefslogtreecommitdiff
path: root/ansible-practice/04-playbook-create-file.yml
diff options
context:
space:
mode:
authorboom2 <blizzack@blizzack.com>2023-12-17 09:08:55 -0500
committerboom2 <blizzack@blizzack.com>2023-12-17 09:08:55 -0500
commit51b282b65f1d36b547206b00bdd2a29c880da44e (patch)
tree8ebe4461436de87d3e31ab82b0c720d3ee961c08 /ansible-practice/04-playbook-create-file.yml
parentf30709d7dbe88d82c4df66c476db36cb5c0ce903 (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/04-playbook-create-file.yml')
-rw-r--r--ansible-practice/04-playbook-create-file.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ansible-practice/04-playbook-create-file.yml b/ansible-practice/04-playbook-create-file.yml
index d9676e9..19afb03 100644
--- a/ansible-practice/04-playbook-create-file.yml
+++ b/ansible-practice/04-playbook-create-file.yml
@@ -9,7 +9,7 @@
# connection: local
tasks:
- name: Creating an empty file
- file:
+ ansible.builtin.file:
path: "~/ansible_created_file-01.txt"
state: touch
... \ No newline at end of file