Answers for "ansible file module always create a new file"

0

ansible create file

# Use file module

- name: Create a file
  file:
    path: /my/absolute/path/myfile
    state: touch
    owner: root
    group: root
    mode: '0664'

# Ad hoc command
ansible my_hosts -m file -a "path=/my/absolute/path/myfile state=touch"
Posted by: Guest on June-01-2021

Browse Popular Code Answers by Language