Skip to content

Commit

Permalink
Fix salt/api.sls.
Browse files Browse the repository at this point in the history
Signed-off-by: René Jochum <rene@jochums.at>
  • Loading branch information
jochumdev committed Jul 13, 2015
1 parent 7bb82b0 commit 8a1b8dc
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions salt/api.sls
Original file line number Diff line number Diff line change
Expand Up @@ -9,40 +9,39 @@ include:
{%- set cfg_salt = pillar.get('salt', {}) %}
{%- set cfg_master = cfg_salt.get('master', {}) %}
salt-api:
salt_api_install:
pkg.installed:
- name: {{ salt_settings['salt-api'] }}
- name: {{ salt_settings['salt_api'] }}
service.running:
- name: {{ salt_settings.get('api_service', 'salt-api') }}
- require:
- service: {{ salt_settings.get('api_service', 'salt-api') }}
{%- if 'rest_cherrypy' in cfg_master %}
- pip: salt-api-cherrypy
- pip: salt_api_cherrypy
{% elif 'rest_tornado' in cfg_master %}
- pip: salt-api-tornado
- pip: salt_api_tornado
{% endif %}
- watch:
- pkg: salt-master
- file: salt-master
{%- if 'rest_cherrypy' in cfg_master %}
salt-api-cherrypy:
salt_api_cherrypy:
pkg.purged:
- name: {{ salt_settings['python-cherrypy'] }}
pip.installed:
- name: cherrypy
- require:
- pkg: salt-api-cherrypy
- pkg: salt_api_cherrypy
- pkg: pip_extensions
{% endif %}
{%- if 'rest_tornado' in cfg_master %}
salt-api-tornado:
salt_api_tornado:
pkg.purged:
- name: {{ salt_settings['python-tornado'] }}
pip.installed:
- name: tornado
- require:
- pkg: salt-api-tornado
- pkg: salt_api_tornado
- pkg: pip_extensions
{% endif %}

0 comments on commit 8a1b8dc

Please sign in to comment.