From 9f15204dff9fab84897431494e1984bdc04711bd Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Mon, 28 Sep 2015 14:12:52 +0200 Subject: [PATCH] Vagrant: Do not install Memcached and Beanstalkd --- Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 5b3f94e..1ac845d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -251,7 +251,7 @@ Vagrant.configure("2") do |config| ########## # Install Memcached - config.vm.provision "shell", path: "#{github_url}/scripts/memcached.sh" + # config.vm.provision "shell", path: "#{github_url}/scripts/memcached.sh" # Provision Redis (without journaling and persistence) # config.vm.provision "shell", path: "#{github_url}/scripts/redis.sh" @@ -266,7 +266,7 @@ Vagrant.configure("2") do |config| ########## # Install Beanstalkd - config.vm.provision "shell", path: "#{github_url}/scripts/beanstalkd.sh" + # config.vm.provision "shell", path: "#{github_url}/scripts/beanstalkd.sh" # Install Heroku Toolbelt # config.vm.provision "shell", path: "https://toolbelt.heroku.com/install-ubuntu.sh"