Skip to content

Commit

Permalink
Merge pull request #150 from pcdummy/master
Browse files Browse the repository at this point in the history
Advance salt/api.sls, install rest_cherrypy or rest_tornado from pip.
  • Loading branch information
puneetk committed Jul 13, 2015
2 parents 779e6c9 + 8a1b8dc commit b90fdc6
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 6 deletions.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Configure pillar data under salt:ssh_roster to feed the template.

Install salt api
Requisite: Configure salt-master with rest_cherrypy or rest_tornado.
Requires: pip.extensions as it installs the latest version from pip.

``salt.standalone``
-------------------
Expand Down
43 changes: 37 additions & 6 deletions salt/api.sls
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 %}
3 changes: 3 additions & 0 deletions salt/defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ salt:
salt_api: salt-api
salt_ssh: salt-ssh

python-cherrypy: python-cherrypy
python-tornado: python-tornado

master:
gitfs_provider: gitpython

Expand Down

0 comments on commit b90fdc6

Please sign in to comment.