You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1002 B

6 years ago
  1. ---
  2. - name: install consul in client mode latest centos
  3. hosts: consul-clients
  4. vars:
  5. source_dir: "/opt/consul/"
  6. tasks:
  7. - name: check linux version
  8. debug:
  9. var: ansible_os_family
  10. - name: create dirs
  11. file: path={{ item }} state=directory
  12. loop:
  13. - /var/consul
  14. - /etc/consul.d/
  15. - /etc/consul.d/client
  16. - /etc/consul.d/bootstrap
  17. - name: move consul .service
  18. copy: src={{ source_dir }}consul.service dest=/etc/systemd/system/consul.service
  19. notify:
  20. - restart consul centos
  21. - name: move consul exec
  22. copy: src={{ source_dir }}consul dest=/usr/local/bin/ mode=0755
  23. notify:
  24. - restart consul centos
  25. - name: generate consul config
  26. template: src={{ source_dir }}config.j2 dest=/etc/consul.d/config.json
  27. notify:
  28. - restart consul centos
  29. - name: enable and start consul
  30. service: name=consul state=started enabled=yes
  31. handlers:
  32. - name: restart consul centos
  33. service: name=consul state=restarted

Powered by TurnKey Linux.