mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
440 B
YAML
13 lines
440 B
YAML
11 years ago
|
- 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'"
|
||
10 years ago
|
- "install_sysv_result.checksum == '174fa255735064b420600e4c8637ea0eff28d0c1'"
|
||
11 years ago
|
|