ansible create copy of list code example
Example: ansible copy
- name: Copy in config file for RHEL
copy:
src: './files/rhel/syslog'
dest: '/etc/logrotate.d/'
owner: root
group: root
mode: '0600'
when:
- ansible_facts['distribution'] == 'RedHat'
become: yes