From 22b8dde1ff21acf97cd30fe197d20d451246b5ae Mon Sep 17 00:00:00 2001 From: Marco Orovecchia Date: Tue, 14 Jul 2015 14:21:14 +0200 Subject: [PATCH] salt.api state fails Seems there are several colons missing for salt.api to work correctly, hope I found all of them --- salt/api.sls | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/salt/api.sls b/salt/api.sls index a017e3c..d4f0df8 100644 --- a/salt/api.sls +++ b/salt/api.sls @@ -38,9 +38,9 @@ salt_api_install: {%- if use_pip %} {%- if 'rest_cherrypy' in cfg_master %} salt_api_cherrypy: - pkg.purged + pkg.purged: - name: {{ salt_settings.python_cherrypy }} - pip.installed + pip.installed: - name: cherrypy - require: - pkg: salt_api_cherrypy @@ -49,9 +49,9 @@ salt_api_cherrypy: {%- if 'rest_tornado' in cfg_master %} salt_api_tornado: - pkg.purged + pkg.purged: - name: {{ salt_settings.python_tornado }} - pip.installed + pip.installed: - name: tornado - require: - pkg: salt_api_tornado @@ -62,13 +62,13 @@ salt_api_tornado: {% if 'rest_cherrypy' in cfg_master %} salt_api_cherrypy: - pkg.installed + pkg.installed: - name: {{ salt_settings.python_cherrypy }} {% endif %} {% if 'rest_tornado' in cfg_master %} salt_api_tornado: - pkg.installed + pkg.installed: - name: {{ salt_settings.python_tornado }} {% endif %} {%- endif %}