소스 검색

Fix salt/api.sls.

Signed-off-by: René Jochum <rene@jochums.at>
master
René Jochum 9 년 전
부모
커밋
8a1b8dc9db
1개의 변경된 파일8개의 추가작업 그리고 9개의 파일을 삭제
  1. +8
    -9
      salt/api.sls

+ 8
- 9
salt/api.sls 파일 보기

@@ -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 %}

Loading…
취소
저장