mirror of
https://github.com/saltstack-formulas/salt-formula.git
synced 2024-11-27 22:38:10 +01:00
Revert "Install cherrypy/tornado from pip only if use_pip is True."
This reverts commit 90282eff03
.
This commit is contained in:
parent
8448aa4021
commit
d216a3f651
@ -38,10 +38,6 @@ salt:
|
|||||||
debug: False
|
debug: False
|
||||||
disable_ssl: False
|
disable_ssl: False
|
||||||
|
|
||||||
api:
|
|
||||||
# Installs the latest version of cherrpy/tornado from pip.
|
|
||||||
use_pip: True
|
|
||||||
|
|
||||||
# salt minion config:
|
# salt minion config:
|
||||||
minion:
|
minion:
|
||||||
|
|
||||||
|
55
salt/api.sls
55
salt/api.sls
@ -2,15 +2,12 @@
|
|||||||
|
|
||||||
{% from "salt/map.jinja" import salt_settings with context %}
|
{% from "salt/map.jinja" import salt_settings with context %}
|
||||||
|
|
||||||
{%- set cfg_salt = pillar.get('salt', {}) %}
|
|
||||||
{%- set cfg_master = cfg_salt.get('master', {}) %}
|
|
||||||
{%- set use_pip = salt['pillar.get']('salt:api:use_pip', False) %}
|
|
||||||
|
|
||||||
include:
|
include:
|
||||||
- salt.master
|
- salt.master
|
||||||
{%- if use_pip %}
|
|
||||||
- pip.extensions
|
- pip.extensions
|
||||||
{%- endif %}
|
|
||||||
|
{%- set cfg_salt = pillar.get('salt', {}) %}
|
||||||
|
{%- set cfg_master = cfg_salt.get('master', {}) %}
|
||||||
|
|
||||||
salt_api_install:
|
salt_api_install:
|
||||||
pkg.installed:
|
pkg.installed:
|
||||||
@ -18,31 +15,20 @@ salt_api_install:
|
|||||||
service.running:
|
service.running:
|
||||||
- name: {{ salt_settings.get('api_service', 'salt-api') }}
|
- name: {{ salt_settings.get('api_service', 'salt-api') }}
|
||||||
- require:
|
- require:
|
||||||
{%- if use_pip %}
|
|
||||||
{%- if 'rest_cherrypy' in cfg_master %}
|
{%- if 'rest_cherrypy' in cfg_master %}
|
||||||
- pip: salt_api_cherrypy
|
- pip: salt_api_cherrypy
|
||||||
{%- elif 'rest_tornado' in cfg_master %}
|
{% elif 'rest_tornado' in cfg_master %}
|
||||||
- pip: salt_api_tornado
|
- pip: salt_api_tornado
|
||||||
{%- endif %}
|
{% 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 %}
|
|
||||||
- watch:
|
- watch:
|
||||||
- pkg: salt-master
|
- pkg: salt-master
|
||||||
- file: salt-master
|
- file: salt-master
|
||||||
|
|
||||||
{%- if use_pip %}
|
|
||||||
{%- if 'rest_cherrypy' in cfg_master %}
|
{%- if 'rest_cherrypy' in cfg_master %}
|
||||||
salt_api_cherrypy:
|
salt_api_cherrypy:
|
||||||
pkg:
|
pkg.purged:
|
||||||
- purged
|
- name: {{ salt_settings['python-cherrypy'] }}
|
||||||
- name: {{ salt_settings['python_cherrypy'] }}
|
pip.installed:
|
||||||
pip:
|
|
||||||
- installed
|
|
||||||
- name: cherrypy
|
- name: cherrypy
|
||||||
- require:
|
- require:
|
||||||
- pkg: salt_api_cherrypy
|
- pkg: salt_api_cherrypy
|
||||||
@ -51,30 +37,11 @@ salt_api_cherrypy:
|
|||||||
|
|
||||||
{%- if 'rest_tornado' in cfg_master %}
|
{%- if 'rest_tornado' in cfg_master %}
|
||||||
salt_api_tornado:
|
salt_api_tornado:
|
||||||
pkg:
|
pkg.purged:
|
||||||
- purged
|
- name: {{ salt_settings['python-tornado'] }}
|
||||||
- name: {{ salt_settings['python_tornado'] }}
|
pip.installed:
|
||||||
pip:
|
|
||||||
- installed
|
|
||||||
- name: tornado
|
- name: tornado
|
||||||
- require:
|
- require:
|
||||||
- pkg: salt_api_tornado
|
- pkg: salt_api_tornado
|
||||||
- pkg: pip_extensions
|
- pkg: pip_extensions
|
||||||
{% endif %}
|
{% 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 %}
|
|
||||||
|
@ -18,8 +18,8 @@ salt:
|
|||||||
salt_api: salt-api
|
salt_api: salt-api
|
||||||
salt_ssh: salt-ssh
|
salt_ssh: salt-ssh
|
||||||
|
|
||||||
python_cherrypy: python-cherrypy
|
python-cherrypy: python-cherrypy
|
||||||
python_tornado: python-tornado
|
python-tornado: python-tornado
|
||||||
|
|
||||||
master:
|
master:
|
||||||
gitfs_provider: gitpython
|
gitfs_provider: gitpython
|
||||||
|
Loading…
Reference in New Issue
Block a user