ansible/tests_new/integration/roles/test_service/tasks/upstart_cleanup.yml

11 lines
307 B
YAML
Raw Normal View History

- name: remove the upstart init file
file: path=/etc/init/ansible_test 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'"
- "remove_upstart_result.state == 'absent'"