blob: 7c5a98a99157e2e2bb10fdcde83a0ef755076417 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
- name: Fixture for no-relative-paths
hosts: localhost
tasks:
- name: Content example with no src
ansible.builtin.copy:
content: "# This file was moved to /etc/other.conf"
dest: /etc/mine.conf
mode: "0644"
- name: Copy example
ansible.builtin.copy:
src: /home/example/files/foo.conf
dest: /etc/foo.conf
mode: "0644"
|