parent
ed3ab22a13
commit
8448aa4021
26
salt/api.sls
26
salt/api.sls
@ -38,9 +38,11 @@ salt_api_install:
|
|||||||
{%- if use_pip %}
|
{%- if use_pip %}
|
||||||
{%- if 'rest_cherrypy' in cfg_master %}
|
{%- if 'rest_cherrypy' in cfg_master %}
|
||||||
salt_api_cherrypy:
|
salt_api_cherrypy:
|
||||||
pkg.purged
|
pkg:
|
||||||
- name: {{ salt_settings.python_cherrypy }}
|
- purged
|
||||||
pip.installed
|
- name: {{ salt_settings['python_cherrypy'] }}
|
||||||
|
pip:
|
||||||
|
- installed
|
||||||
- name: cherrypy
|
- name: cherrypy
|
||||||
- require:
|
- require:
|
||||||
- pkg: salt_api_cherrypy
|
- pkg: salt_api_cherrypy
|
||||||
@ -49,9 +51,11 @@ salt_api_cherrypy:
|
|||||||
|
|
||||||
{%- if 'rest_tornado' in cfg_master %}
|
{%- if 'rest_tornado' in cfg_master %}
|
||||||
salt_api_tornado:
|
salt_api_tornado:
|
||||||
pkg.purged
|
pkg:
|
||||||
- name: {{ salt_settings.python_tornado }}
|
- purged
|
||||||
pip.installed
|
- name: {{ salt_settings['python_tornado'] }}
|
||||||
|
pip:
|
||||||
|
- installed
|
||||||
- name: tornado
|
- name: tornado
|
||||||
- require:
|
- require:
|
||||||
- pkg: salt_api_tornado
|
- pkg: salt_api_tornado
|
||||||
@ -62,13 +66,15 @@ salt_api_tornado:
|
|||||||
|
|
||||||
{% if 'rest_cherrypy' in cfg_master %}
|
{% if 'rest_cherrypy' in cfg_master %}
|
||||||
salt_api_cherrypy:
|
salt_api_cherrypy:
|
||||||
pkg.installed
|
pkg:
|
||||||
- name: {{ salt_settings.python_cherrypy }}
|
- installed
|
||||||
|
- name: {{ salt_settings['python_cherrypy'] }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if 'rest_tornado' in cfg_master %}
|
{% if 'rest_tornado' in cfg_master %}
|
||||||
salt_api_tornado:
|
salt_api_tornado:
|
||||||
pkg.installed
|
pkg:
|
||||||
- name: {{ salt_settings.python_tornado }}
|
- installed
|
||||||
|
- name: {{ salt_settings['python_tornado'] }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
Loading…
Reference in New Issue
Block a user