2016-05-31 13:43:06 -07:00
|
|
|
- name: set service_type fact
|
|
|
|
set_fact: service_type=systemd
|
|
|
|
|
2014-02-19 18:05:35 -05:00
|
|
|
- name: install the systemd unit file
|
2016-04-23 22:43:11 +02:00
|
|
|
copy: src=ansible.systemd dest=/etc/systemd/system/ansible_test.service
|
2014-02-19 18:05:35 -05:00
|
|
|
register: install_systemd_result
|
|
|
|
|
2014-09-18 12:39:54 -07:00
|
|
|
- name: install a broken systemd unit file
|
2016-04-23 22:43:11 +02:00
|
|
|
file: src=ansible_test.service path=/etc/systemd/system/ansible_test_broken.service state=link
|
2014-09-18 12:39:54 -07:00
|
|
|
register: install_broken_systemd_result
|
|
|
|
|
2014-02-19 18:05:35 -05:00
|
|
|
- name: assert that the systemd unit file was installed
|
|
|
|
assert:
|
|
|
|
that:
|
2016-04-23 22:43:11 +02:00
|
|
|
- "install_systemd_result.dest == '/etc/systemd/system/ansible_test.service'"
|
2014-02-19 18:05:35 -05:00
|
|
|
- "install_systemd_result.state == 'file'"
|
|
|
|
- "install_systemd_result.mode == '0644'"
|
2014-11-06 21:28:04 -08:00
|
|
|
- "install_systemd_result.checksum == 'ca4b413fdf3cb2002f51893b9e42d2e449ec5afb'"
|
2016-04-23 22:43:11 +02:00
|
|
|
- "install_broken_systemd_result.dest == '/etc/systemd/system/ansible_test_broken.service'"
|
2014-09-18 12:39:54 -07:00
|
|
|
- "install_broken_systemd_result.state == 'link'"
|
2014-02-19 18:05:35 -05:00
|
|
|
|