summaryrefslogtreecommitdiffstats
path: root/examples/playbooks/no_relative_paths_fail.yml
blob: 1f97c3c6fe3954d3abf6bf0aa73ee484d45643ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
- name: Fixture for no-relative-paths
  hosts: localhost
  tasks:
    - name: Template example # <-- 1st
      ansible.builtin.template:
        src: ../templates/foo.j2
        dest: /etc/file.conf
        mode: "0644"
    - name: Copy example # <-- 2nd
      ansible.builtin.copy:
        src: ../files/foo.conf
        dest: /etc/foo.conf
        mode: "0644"
    # Removed from test suite as module is no longer part of core
    # - name: Some win_template example
    #   win_template:
    #     src: ../win_templates/file.conf.j2
    #     dest: file.conf
    # - name: Some win_copy example
    #   win_copy:
    #     src: ../files/foo.conf
    #     dest: renamed-foo.conf