diff options
Diffstat (limited to 'ansible-practice/04-playbook-create-file.yml')
| -rw-r--r-- | ansible-practice/04-playbook-create-file.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ansible-practice/04-playbook-create-file.yml b/ansible-practice/04-playbook-create-file.yml index f12d33b..d9676e9 100644 --- a/ansible-practice/04-playbook-create-file.yml +++ b/ansible-practice/04-playbook-create-file.yml @@ -1,9 +1,10 @@ # creating a file # https://phoenixnap.com/kb/ansible-create-file +# https://docs.ansible.com/ansible/latest/collections/ansible/builtin/file_module.html --- - name: "04 - Playing with Ansible - creating a file" - hosts: all + hosts: dev # hosts: localhost # connection: local tasks: |
