2
0

Revert "salt.api state fails"

This reverts commit 22b8dde1ff.
This commit is contained in:
Brian Jackson 2015-07-20 17:05:56 -05:00
parent ef73e4ce98
commit f9cb912a65

View File

@ -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 %}