Commit 98853e12 by Bilal

addressing comments

parent 82efba13
...@@ -37,7 +37,6 @@ HARSTORAGE_REPOS: ...@@ -37,7 +37,6 @@ HARSTORAGE_REPOS:
harstorage_debian_pkgs: harstorage_debian_pkgs:
- lib32stdc++6 - lib32stdc++6
- python
- python-cairo - python-cairo
- python-rsvg - python-rsvg
- python-setuptools - python-setuptools
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
state: present state: present
with_items: harstorage_debian_pkgs with_items: harstorage_debian_pkgs
- name: download harstorage egg file] - name: download harstorage egg file
get_url: get_url:
url: http://harstorage.googlecode.com/files/harstorage-1.0-py2.7.egg url: http://harstorage.googlecode.com/files/harstorage-1.0-py2.7.egg
dest: "{{ harstorage_code_dir }}/harstorage-1.0-py2.7.egg" dest: "{{ harstorage_code_dir }}/harstorage-1.0-py2.7.egg"
...@@ -41,20 +41,21 @@ ...@@ -41,20 +41,21 @@
- name: install python packages - name: install python packages
pip: pip:
name: "{{ item.name }}" name: "{{ item.name }}"
virtualenv: "{{ harstorage_venv_dir }}"
state: present state: present
version: "{{ item.version }}" version: "{{ item.version }}"
with_items: harstorage_python_pkgs with_items: harstorage_python_pkgs
- name: create harstorage directory - name: create harstorage config directory
file: file:
path: "/{{ harstorage_etc }}" path: "{{ harstorage_venv_dir }}/{{ harstorage_etc }}"
state: directory state: directory
mode: 0755 mode: 0755
- name: setup the harstorage production.ini file - name: setup the harstorage production.ini file
template: template:
src: './{{ harstorage_etc }}/production.ini.j2' src: './{{ harstorage_etc }}/production.ini.j2'
dest: '/{{ harstorage_etc }}/production.ini' dest: '{{ harstorage_venv_dir }}/{{ harstorage_etc }}/production.ini'
owner: '{{ harstorage_user }}' owner: '{{ harstorage_user }}'
group: '{{ harstorage_user }}' group: '{{ harstorage_user }}'
mode: 0644 mode: 0644
...@@ -62,9 +63,10 @@ ...@@ -62,9 +63,10 @@
- name: install harstorage - name: install harstorage
easy_install: easy_install:
name: "{{ harstorage_code_dir }}/harstorage-1.0-py2.7.egg" name: "{{ harstorage_code_dir }}/harstorage-1.0-py2.7.egg"
virtualenv: "{{ harstorage_venv_dir }}"
- name: apply config - name: apply config
command: "/usr/bin/paster setup-app /{{ harstorage_etc }}/production.ini" command: "/usr/bin/paster setup-app {{ harstorage_venv_dir }}/{{ harstorage_etc }}/production.ini"
- name: run harstorage - name: run harstorage
command: "/usr/bin/paster serve /{{ harstorage_etc }}/production.ini" command: "/usr/bin/paster serve {{ harstorage_venv_dir }}/{{ harstorage_etc }}/production.ini"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment