diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-10-11 21:11:10 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-10-11 21:11:10 -0400 |
commit | acba6839a6082e3e3800a733f8baea7c843fc02e (patch) | |
tree | e2847dcd13d9ccc3d8f0f6f936a5776df852e11b /Vagrantfile | |
parent | a8418afdebe92dde495bc5010645779c73939b7b (diff) |
Add 3 new fields for tasks: start date, time estimated and time spent
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile index 94eb41b8..ced296a1 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -6,7 +6,7 @@ VAGRANTFILE_API_VERSION = "2" $script = <<SCRIPT # install packages apt-get update -apt-get install -y apache2 php5 php5-sqlite php5-ldap php5-xdebug php5-curl php5-mysql php5-pgsql +apt-get install -y apache2 php5 libapache2-mod-php5 php5-sqlite php5-ldap php5-xdebug php5-curl php5-mysql php5-pgsql service apache2 restart rm -f /var/www/html/index.html date > /etc/vagrant_provisioned_at @@ -15,6 +15,11 @@ SCRIPT Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| + # Virtualbox + config.vm.provider "virtualbox" do |v| + v.memory = 1024 + end + # Image config.vm.box = "ubuntu/trusty64" config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box" |