2
0
salt-formula/salt/api.sls

48 lines
1.1 KiB
Plaintext
Raw Normal View History

#!jinja|yaml
{% from "salt/map.jinja" import salt_settings with context %}
2015-03-07 23:43:32 +01:00
include:
- salt.master
- pip.extensions
{%- set cfg_salt = pillar.get('salt', {}) %}
{%- set cfg_master = cfg_salt.get('master', {}) %}
2015-03-07 23:43:32 +01:00
salt_api_install:
2015-03-07 23:43:32 +01:00
pkg.installed:
- name: {{ salt_settings['salt_api'] }}
2015-03-07 23:43:32 +01:00
service.running:
- name: {{ salt_settings.get('api_service', 'salt-api') }}
2015-03-07 23:43:32 +01:00
- require:
{%- if 'rest_cherrypy' in cfg_master %}
- pip: salt_api_cherrypy
{% elif 'rest_tornado' in cfg_master %}
- pip: salt_api_tornado
{% endif %}
2015-03-07 23:43:32 +01:00
- watch:
- pkg: salt-master
- file: salt-master
{%- if 'rest_cherrypy' in cfg_master %}
salt_api_cherrypy:
pkg.purged:
- name: {{ salt_settings['python-cherrypy'] }}
pip.installed:
- name: cherrypy
- require:
- pkg: salt_api_cherrypy
- pkg: pip_extensions
{% endif %}
{%- if 'rest_tornado' in cfg_master %}
salt_api_tornado:
pkg.purged:
- name: {{ salt_settings['python-tornado'] }}
pip.installed:
- name: tornado
- require:
- pkg: salt_api_tornado
- pkg: pip_extensions
{% endif %}