Browse Source

Merge pull request #152 from pcdummy/master

Fix stuff suggested by @iggy.
tags/v0.57.0
puneet kandhari 9 years ago
parent
commit
96d820a5a0
1 changed files with 10 additions and 16 deletions
  1. +10
    -16
      salt/api.sls

+ 10
- 16
salt/api.sls View File

{%- 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
- name: {{ salt_settings['python_cherrypy'] }}
pip:
- installed
pkg.purged
- name: {{ salt_settings.python_cherrypy }}
pip.installed
- name: cherrypy - name: cherrypy
- require: - require:
- pkg: salt_api_cherrypy - pkg: salt_api_cherrypy


{%- if 'rest_tornado' in cfg_master %} {%- if 'rest_tornado' in cfg_master %}
salt_api_tornado: salt_api_tornado:
pkg:
- purged
- name: {{ salt_settings['python_tornado'] }}
pip:
- installed
pkg.purged
- name: {{ salt_settings.python_tornado }}
pip.installed
- name: tornado - name: tornado
- require: - require:
- pkg: salt_api_tornado - pkg: salt_api_tornado


{% if 'rest_cherrypy' in cfg_master %} {% if 'rest_cherrypy' in cfg_master %}
salt_api_cherrypy: salt_api_cherrypy:
pkg:
- installed
- name: {{ salt_settings['python_cherrypy'] }}
pkg.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
- name: {{ salt_settings['python_tornado'] }}
pkg.installed
- name: {{ salt_settings.python_tornado }}
{% endif %} {% endif %}
{%- endif %} {%- endif %}

Loading…
Cancel
Save