renamed project

This commit is contained in:
Matthew Scragg 2013-10-03 10:01:40 -05:00
parent cba28239a2
commit 2bbeb52178
307 changed files with 4 additions and 4 deletions

15
srv/salt/realms/init.sls Normal file
View file

@ -0,0 +1,15 @@
python-pkgs:
pkg.installed:
- pkgs:
- python-dev
- python-pip
- build-essential
{% for pkg in ['tornado', 'pyzmq', 'itsdangerous', 'boto', 'redis', 'simplejson', 'sockjs-tornado', 'flask', 'flask-bcrypt', 'flask-login', 'flask-assets', 'gittle', 'gevent', 'lxml', 'markdown2', 'recaptcha-client', 'RethinkORM' ] %}
{{ pkg }}-pip:
pip:
- name: {{ pkg }}
- installed
- require:
- pkg.installed: common-pkgs
{% endfor %}