Skip to content

Commit 5f8fa5f

Browse files
committed
release Vagrantfiles: increase memory and install libtinfo-dev
1 parent 8ca63e9 commit 5f8fa5f

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

etc/vagrant/centos-6-i386/Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Vagrant.configure(2) do |config|
44
config.vm.box = "chef/centos-6.6-i386"
55
config.vm.synced_folder "../../..", "/vagrant", type: "rsync", rsync__exclude: [".stack_work/", "_release/"]
66
config.vm.provider "virtualbox" do |vb|
7-
vb.memory = "1024"
7+
vb.memory = "2048"
88
end
99
config.vm.provision "shell", run: "always", inline: <<-SHELL
1010
set -xe

etc/vagrant/centos-6-x86_64/Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Vagrant.configure(2) do |config|
44
config.vm.box = "chef/centos-6.6"
55
config.vm.synced_folder "../../..", "/vagrant", type: "rsync", rsync__exclude: [".stack_work/", "_release/"]
66
config.vm.provider "virtualbox" do |vb|
7-
vb.memory = "1024"
7+
vb.memory = "2048"
88
end
99
config.vm.provision "shell", run: "always", inline: <<-SHELL
1010
set -xe

etc/vagrant/centos-7-x86_64/Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Vagrant.configure(2) do |config|
44
config.vm.box = "chef/centos-7.0"
55
config.vm.synced_folder "../../..", "/vagrant", type: "rsync", rsync__exclude: [".stack_work/", "_release/"]
66
config.vm.provider "virtualbox" do |vb|
7-
vb.memory = "1024"
7+
vb.memory = "2048"
88
end
99
config.vm.provision "shell", run: "always", inline: <<-SHELL
1010
set -xe

etc/vagrant/debian-7-amd64/Vagrantfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ Vagrant.configure(2) do |config|
44
config.vm.box = "chef/debian-7.8"
55
config.vm.synced_folder "../../..", "/vagrant", type: "rsync", rsync__exclude: [".stack_work/", "_release/"]
66
config.vm.provider "virtualbox" do |vb|
7-
vb.memory = "1024"
7+
vb.memory = "2048"
88
end
99
config.vm.provision "shell", run: "always", inline: <<-SHELL
1010
set -xe
1111
export PATH=/usr/local/bin:$PATH
1212
export DEBIAN_FRONTEND=noninteractive
1313
apt-get update
14-
apt-get install -y net-tools wget zlib1g-dev ruby-dev libgmp-dev lsb-release ca-certificates
14+
apt-get install -y net-tools wget zlib1g-dev ruby-dev libgmp-dev lsb-release ca-certificates libtinfo-dev
1515
if ! which stack; then
1616
wget -q -O- http://download.fpcomplete.com/ubuntu/fpco.key | apt-key add -
1717
echo "deb http://download.fpcomplete.com/debian/$(lsb_release -cs) stable main" >/etc/apt/sources.list.d/fpco.list

etc/vagrant/debian-7-i386/Vagrantfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ Vagrant.configure(2) do |config|
44
config.vm.box = "puppetlabs/debian-7.8-32-nocm"
55
config.vm.synced_folder "../../..", "/vagrant", type: "rsync", rsync__exclude: [".stack_work/", "_release/"]
66
config.vm.provider "virtualbox" do |vb|
7-
vb.memory = "1024"
7+
vb.memory = "2048"
88
end
99
config.vm.provision "shell", run: "always", inline: <<-SHELL
1010
set -xe
1111
export PATH=/usr/local/bin:$PATH
1212
export DEBIAN_FRONTEND=noninteractive
1313
apt-get update
14-
apt-get install -y net-tools wget zlib1g-dev ruby-dev libgmp-dev lsb-release ca-certificates git
14+
apt-get install -y net-tools wget zlib1g-dev ruby-dev libgmp-dev lsb-release ca-certificates git libtinfo-dev
1515
if ! which stack; then
1616
curl -sSL $(curl -sSL https://api.github.com/repos/commercialhaskell/stack/releases/latest \
1717
|grep '"browser_download_url": ".*/stack-[0-9\\.]\\+-i386-linux.gz"' \

0 commit comments

Comments
 (0)