Posted on 10th September 2024|33 views
How to create a directory in Ansible
Posted on 10th September 2024| views
In Ansible, we will create the directory through the file manager module
-name: create a directory if it does not exist
file:
Path: /c/directory1
State: directory
Mode: ‘07555.’