1 Ansible
eamonn.travers edited this page 6 years ago

Create a directory

File Module

---
- name Create a Directory
  file:
    path: /testy/test
    owner: root
    group: root
    mode: 0755
    state: directory
Table of Contents