2
0
salt-formula/salt/api.sls

81 lines
1.7 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
{%- set cfg_salt = pillar.get('salt', {}) %}
{%- set cfg_master = cfg_salt.get('master', {}) %}
{%- set use_pip = salt['pillar.get']('salt:api:use_pip', False) %}
2015-03-07 23:43:32 +01:00
include:
- salt.master
{%- if use_pip %}
- pip.extensions
{%- endif %}
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 use_pip %}
{%- if 'rest_cherrypy' in cfg_master %}
- pip: salt_api_cherrypy
{%- elif 'rest_tornado' in cfg_master %}
- pip: salt_api_tornado
{%- endif %}
{%- else %} # if use_pip
{%- if 'rest_cherrypy' in cfg_master %}
- pkg: salt_api_cherrypy
{%- elif 'rest_tornado' in cfg_master %}
- pkg: salt_api_tornado
{%- endif %}
{%- endif %}
2015-03-07 23:43:32 +01:00
- watch:
- pkg: salt-master
- file: salt-master
{%- if use_pip %}
{%- 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 %}
{%- else %} # if use_pip
{% if 'rest_cherrypy' in cfg_master %}
salt_api_cherrypy:
pkg:
- installed
- name: {{ salt_settings['python_cherrypy'] }}
{% endif %}
{% if 'rest_tornado' in cfg_master %}
salt_api_tornado:
pkg:
- installed
- name: {{ salt_settings['python_tornado'] }}
{% endif %}
{%- endif %}