Skip to content

Commit e25034f

Browse files
committed
Upgrade to debian 8
1 parent 38230d2 commit e25034f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

etc/scripts/vagrant-releases.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -xe
55
gpg --export-secret-keys --armor "${STACK_RELEASE_GPG_KEY:-0x575159689BEFB442}" >"$(dirname "$0")/../../gpg-secret-key.asc~"
66

77
"$(dirname "$0")/with-vagrant.sh" freebsd-11.0-amd64 "$* upload" "export LANG=en_US.UTF-8;"
8-
"$(dirname "$0")/with-vagrant.sh" debian-7-i386 "$* upload"
8+
"$(dirname "$0")/with-vagrant.sh" debian-8-i386 "$* upload"
99

1010
# Disabled because this is built by CI
1111
#"$(dirname "$0")/with-vagrant.sh" debian-7-amd64 "$* release"

etc/vagrant/debian-7-i386/Vagrantfile renamed to etc/vagrant/debian-8-i386/Vagrantfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- mode: ruby -*-
22
# vi: set ft=ruby :
33
Vagrant.configure(2) do |config|
4-
config.vm.box = "puppetlabs/debian-7.8-32-nocm"
4+
config.vm.box = "puppetlabs/debian-8.2-32-nocm"
55
config.vm.synced_folder ENV['STACK_BUILD_DIR'], "/vagrant-build", type: "rsync", rsync__verbose: true, rsync__exclude: [".stack-work/", "_release/", ".cabal-sandbox/", "cabal.sandbox.config", "dist/", ".#*#", "*.vdi", "*.vmdk", "*.raw", ".DS_Store"], rsync__args: ["--verbose", "--archive", "--delete", "-z"]
66
config.vm.synced_folder "../../..", "/vagrant", type: "rsync", rsync__verbose: true, rsync__exclude: [".stack-work/", "_release/", ".cabal-sandbox/", "cabal.sandbox.config", "dist/", ".#*#", "*.vdi", "*.vmdk", "*.raw", ".DS_Store"], rsync__args: ["--verbose", "--archive", "--delete", "-z"]
77
config.vm.provider "virtualbox" do |vb|
@@ -14,6 +14,7 @@ Vagrant.configure(2) do |config|
1414
export DEBIAN_FRONTEND=noninteractive
1515
apt-get update
1616
apt-get install -y net-tools wget zlib1g-dev ruby-dev libgmp-dev lsb-release ca-certificates git libtinfo-dev unzip
17+
echo 'root ALL=(ALL) NOPASSWD: ALL' | sudo EDITOR='tee' visudo > /dev/null
1718
if ! which stack; then
1819
wget -q -O get_stack.sh http://get.haskellstack.org/
1920
chmod +x get_stack.sh

0 commit comments

Comments
 (0)