-
Notifications
You must be signed in to change notification settings - Fork 419
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #150 from pcdummy/master
Advance salt/api.sls, install rest_cherrypy or rest_tornado from pip.
- Loading branch information
Showing
3 changed files
with
41 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,47 @@ | ||
#!jinja|yaml | ||
|
||
{% from "salt/map.jinja" import salt_settings with context %} | ||
include: | ||
- salt.master | ||
- pip.extensions | ||
{%- set cfg_salt = pillar.get('salt', {}) %} | ||
{%- set cfg_master = cfg_salt.get('master', {}) %} | ||
salt-api: | ||
{% if salt_settings.install_packages %} | ||
salt_api_install: | ||
pkg.installed: | ||
- name: {{ salt_settings.salt_api }} | ||
{% endif %} | ||
- name: {{ salt_settings['salt_api'] }} | ||
service.running: | ||
- name: {{ salt_settings.api_service }} | ||
- name: {{ salt_settings.get('api_service', 'salt-api') }} | ||
- require: | ||
- service: {{ salt_settings.master_service }} | ||
{%- if 'rest_cherrypy' in cfg_master %} | ||
- pip: salt_api_cherrypy | ||
{% elif 'rest_tornado' in cfg_master %} | ||
- pip: salt_api_tornado | ||
{% endif %} | ||
- 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 %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters