/etc/default/haproxy exists only on Debian-based distros
Currently it's not possible to do `haproxy.service` on RedHat-based distros (like CentOS). Initscript doesn't use this file at all, so it's not needed to create it anyway. Actual result: ```---------- ID: haproxy.service Function: file.replace Name: /etc/default/haproxy Result: False Comment: /etc/default/haproxy: file not found Started: 16:16:46.775448 Duration: 2.19 ms Changes: ```
This commit is contained in:
parent
975a77e17c
commit
5b98ce8901
1 changed files with 5 additions and 1 deletions
|
@ -6,12 +6,15 @@ haproxy.service:
|
||||||
- reload: True
|
- reload: True
|
||||||
- require:
|
- require:
|
||||||
- pkg: haproxy
|
- pkg: haproxy
|
||||||
file: haproxy.service
|
{% if salt['grains.get']('os_family') == 'Debian' %}
|
||||||
|
- file: haproxy.service
|
||||||
|
{% endif %}
|
||||||
{% else %}
|
{% else %}
|
||||||
service.dead:
|
service.dead:
|
||||||
- name: haproxy
|
- name: haproxy
|
||||||
- enable: False
|
- enable: False
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if salt['grains.get']('os_family') == 'Debian' %}
|
||||||
file.replace:
|
file.replace:
|
||||||
- name: /etc/default/haproxy
|
- name: /etc/default/haproxy
|
||||||
{% if salt['pillar.get']('haproxy:enabled', True) %}
|
{% if salt['pillar.get']('haproxy:enabled', True) %}
|
||||||
|
@ -22,3 +25,4 @@ haproxy.service:
|
||||||
- repl: ENABLED=0
|
- repl: ENABLED=0
|
||||||
{% endif %}
|
{% endif %}
|
||||||
- show_changes: True
|
- show_changes: True
|
||||||
|
{% endif %}
|
||||||
|
|
Loading…
Reference in a new issue