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/.
10 lines
317 B
YAML
10 lines
317 B
YAML
- name: remove the upstart init file
|
|
file: path=/etc/init/ansible_test.conf state=absent
|
|
register: remove_upstart_result
|
|
|
|
- name: assert that the upstart init file was removed
|
|
assert:
|
|
that:
|
|
- "remove_upstart_result.path == '/etc/init/ansible_test.conf'"
|
|
- "remove_upstart_result.state == 'absent'"
|
|
|