From 2325b67a97e9dc05e720338dd30523253f2cb760 Mon Sep 17 00:00:00 2001 From: Anas TAYAA Date: Wed, 10 Aug 2022 17:17:51 +0200 Subject: [PATCH] add file to 'Create the file /tmp/some_file' task (#272) Co-authored-by: Anas Tayaa --- topics/ansible/solutions/my_first_playbook.md | 1 + 1 file changed, 1 insertion(+) diff --git a/topics/ansible/solutions/my_first_playbook.md b/topics/ansible/solutions/my_first_playbook.md index ab1761e..5e046f7 100644 --- a/topics/ansible/solutions/my_first_playbook.md +++ b/topics/ansible/solutions/my_first_playbook.md @@ -12,6 +12,7 @@ state: present become: yes - name: Create the file /tmp/some_file + file: path: '/tmp/some_file' state: touch ```