Add option to disable contrail DNS
Add option to disable contrail-dns and contrail-named
service. This is disabled by default.
This feature is handled by model. All you need is add
pillar to opencontrail control on which the services should
be disabled:
opencontrail:
control:
disable_dns: True
To stop services cmd.run state is used. I tried service.dead
and supervisord.dead module, but they did not worked.
Closes-Bug: #PROD-18099
Change-Id: I3d3cc1130a35e3039626fa64c850033bdfb57bd8
diff --git a/opencontrail/control.sls b/opencontrail/control.sls
index 486f9dc..1edfa54 100644
--- a/opencontrail/control.sls
+++ b/opencontrail/control.sls
@@ -155,4 +155,30 @@
{%- endif %}
{%- endif %}
+{%- if control.get('disable_dns', False) %}
+{%- if control.version < 4.0 %}
+disable_contrail_dns_service:
+ file.replace:
+ - name: /etc/contrail/supervisord_control_files/contrail-dns.ini
+ - pattern: "autostart=true"
+ - repl: "autostart=false"
+
+disable_contrail_named_service:
+ file.replace:
+ - name: /etc/contrail/supervisord_control_files/contrail-named.ini
+ - pattern: "autostart=true"
+ - repl: "autostart=false"
+
+{# cmd run is used, beacause service.dead or supervisord.dead states are not working #}
+stop_contrail_dns_service:
+ cmd.run:
+ - name: "service contrail-dns stop"
+
+stop_contrail_named_service:
+ cmd.run:
+ - name: "service contrail-named stop"
+
+{%- endif %}
+{%- endif %}
+
{%- endif %}