From 3be5fb0abd56c54369f9ff49c2c7a6157925948e Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Mon, 6 May 2013 16:17:12 -0300 Subject: [PATCH] Set lxc as the default provider on dev boxes --- development/site.pp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/development/site.pp b/development/site.pp index fc2cc7f..6d25879 100644 --- a/development/site.pp +++ b/development/site.pp @@ -5,6 +5,9 @@ exec { 'echo "alias be=\"bundle exec\"" >> /home/vagrant/.bashrc': unless => 'grep -q "bundle exec" /home/vagrant/.bashrc'; + 'echo "export VAGRANT_DEFAULT_PROVIDER=lxc" >> /home/vagrant/.bashrc': + unless => 'grep -q "VAGRANT_DEFAULT_PROVIDER" /home/vagrant/.bashrc'; + 'echo "cd /vagrant" >> /home/vagrant/.bashrc': unless => 'grep -q "cd /vagrant" /home/vagrant/.bashrc'; }