Create Directory
1---
2- hosts: localhost
3 become: true
4
5 tasks:
6 - name: Create directory
7 file:
8 path: /tmp/yallo_dir
9 state: directory
1---
2- hosts: localhost
3 become: true
4
5 tasks:
6 - name: Create directory
7 file:
8 path: /tmp/yallo_dir
9 state: directory