c7d1c1a306
The 'service' utility was unable to find the 'ansible_test' service due to an unexpected filename. This patch corrects the filename and adjusts the permissions to match other service scripts within /etc/init/.
12 lines
460 B
YAML
12 lines
460 B
YAML
- name: install the upstart init file
|
|
copy: src=ansible.upstart dest=/etc/init/ansible_test.conf mode=0644
|
|
register: install_upstart_result
|
|
|
|
- name: assert that the upstart init file was installed
|
|
assert:
|
|
that:
|
|
- "install_upstart_result.dest == '/etc/init/ansible_test.conf'"
|
|
- "install_upstart_result.state == 'file'"
|
|
- "install_upstart_result.mode == '0644'"
|
|
- "install_upstart_result.md5sum == 'ab3900ea4de8423add764c12aeb90c01'"
|
|
|