11 lines
246 B
YAML
11 lines
246 B
YAML
#! wake up runner !
|
|
- hosts: tower
|
|
gather_facts: false
|
|
tasks:
|
|
- ansible.builtin.file:
|
|
path: /opt/dockerapps/appdata/jelly
|
|
state: directory
|
|
recurse: yes
|
|
mode: '777'
|
|
become: true
|
|
become_user: root |