24 lines
576 B
Text
24 lines
576 B
Text
|
{% from "consul/map.jinja" import consul with context %}
|
||
|
|
||
|
consul-init-script:
|
||
|
file.managed:
|
||
|
{% if salt['test.provider']('service') == 'upstart' %}
|
||
|
- source: salt://consul/files/consul.upstart
|
||
|
- name: /etc/init/consul.conf
|
||
|
- mode: 0644
|
||
|
{% else %}
|
||
|
- source: salt://consul/files/consul.sysvinit
|
||
|
- name: /etc/init.d/consul
|
||
|
- mode: 0755
|
||
|
{% endif %}
|
||
|
{% if consul.service != False %}
|
||
|
- watch_in:
|
||
|
- service: consul
|
||
|
{% endif %}
|
||
|
|
||
|
{% if consul.service != False %}
|
||
|
consul-service:
|
||
|
service.running:
|
||
|
- name: consul
|
||
|
{% endif %}
|