diff --git a/ansible/files/uwsgi.ini b/ansible/files/uwsgi.ini index d286e1c..75c4a4e 100644 --- a/ansible/files/uwsgi.ini +++ b/ansible/files/uwsgi.ini @@ -1,7 +1,6 @@ [uwsgi] plugins = python -venv = /home/vagrant/virtualenv chdir = /vagrant uid = root diff --git a/ansible/site.yml b/ansible/site.yml index 5d98d01..4f974ac 100644 --- a/ansible/site.yml +++ b/ansible/site.yml @@ -25,7 +25,6 @@ - python-dev - python-software-properties - python-setuptools - - python-virtualenv - python-pip - nginx - uwsgi @@ -42,11 +41,8 @@ - uglify-js - jade - - name: Virtualenv | Create - shell: virtualenv "/home/vagrant/virtualenv" creates="/vagrant/virtualenv/bin/activate" - - - name: Virtualenv | Install python egg - shell: /home/vagrant/virtualenv/bin/python /vagrant/setup.py develop + - name: Python | Install egg + shell: cd /vagrant; python setup.py develop - name: Make shell: cd /vagrant; {{ item }}