Commit c212c491 authored by Alain Takoudjou's avatar Alain Takoudjou

re6st playbook: fix re6st-node service installation path for CentOS 7

parent 8f16b9c1
......@@ -11,6 +11,18 @@
stat: path=/etc/re6stnet/re6stnet.conf
register: recheck_re6stnet_conf
- name: stat re6stnet.service
stat: path=/etc/systemd/re6stnet.service
register: re6stnet
- name: stat re6st-node.service
stat: path=/etc/systemd/system/re6st-node.service
register: re6stnode
- name: set re6st-node.service file
copy: src=/etc/systemd/re6stnet.service dest=/etc/systemd/system/re6st-node.service
when: ansible_distribution == 'CentOS' and ansible_distribution_version >= '7' and re6stnet.stat.exists == True and re6stnode.stat.exists == False
- name: Start re6st-node service
service: name=re6st-node state=started enabled=yes
when: recheck_re6stnet_conf.stat.exists == True
\ No newline at end of file
when: recheck_re6stnet_conf.stat.exists == True
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment