File: issue_177__copy_module_failing.yml

package info (click to toggle)
python-mitogen 0.3.44-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,824 kB
  • sloc: python: 24,965; sh: 144; makefile: 74; perl: 19; ansic: 18
file content (22 lines) | stat: -rw-r--r-- 380 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- name: regression/issue_177__copy_module_failing.yml
  hosts: test-targets
  tasks:

  - name: Copy files
    copy:
      src: /etc/{{item}}
      dest: /tmp/{{item}}
      mode: 0644
    with_items:
      - passwd
      - hosts

  - name: Cleanup files
    file:
      path: /tmp/{{item}}
      state: absent
    with_items:
      - passwd
      - hosts
  tags:
    - issue_177