blob: 90b88b39e072c444f57c5a7f5a4bab740a678bb5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
---
- name: Fixture to validate module options action pass scenarios
hosts: localhost
tasks:
- name: Copy a new "ntp.conf" file into place with backup
ansible.builtin.copy:
src: /mine/ntp.conf
dest: /etc/ntp.conf
backup: true
mode: "0600"
|