From 5a29d2742d14d24dc70f41f525afe3cc7a2aef3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Gr=C3=A4ber?= Date: Thu, 19 Feb 2015 15:20:54 +0100 Subject: [PATCH] Remove virtualenv --- ansible/files/uwsgi.ini | 1 - ansible/site.yml | 8 ++------ 2 files changed, 2 insertions(+), 7 deletions(-) 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 }}