summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/service/tasks/sysv_setup.yml
blob: 796a2fe9a7176e16d06a735e93a2c909535cf009 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
- name: install the sysV init file
  copy: src=ansible.sysv dest=/etc/init.d/ansible_test mode=0755
  register: install_sysv_result

- name: assert that the sysV init file was installed
  assert:
    that:
    - "install_sysv_result.dest == '/etc/init.d/ansible_test'"
    - "install_sysv_result.state == 'file'"
    - "install_sysv_result.mode == '0755'"
    - "install_sysv_result.checksum == '174fa255735064b420600e4c8637ea0eff28d0c1'"