From 42f3fa97152d1c3fa0513c347785e296259d8d2e Mon Sep 17 00:00:00 2001 From: Antonio Terceiro Date: Mon, 18 Jan 2016 11:08:55 -0200 Subject: [PATCH] util/debian-install: update to install on jessie --- util/debian-install/README.md | 4 ++-- util/debian-install/Vagrantfile | 2 +- util/debian-install/install | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/util/debian-install/README.md b/util/debian-install/README.md index 5b54786..16858a7 100644 --- a/util/debian-install/README.md +++ b/util/debian-install/README.md @@ -28,8 +28,8 @@ $ rm -f pkg/ $ cd utils/debian-install/ $ vagrant destroy $ rm -f *.deb -$ REPOSITORY=wheezy vagrant up # install current stable version +$ REPOSITORY=jessie vagrant up # install current stable version $ cd ../../ $ make noosfero:deb # build current packages -$ REPOSITORY=wheezy-next vagrant provision # upgrade +$ REPOSITORY=jessie-next vagrant provision # upgrade ``` diff --git a/util/debian-install/Vagrantfile b/util/debian-install/Vagrantfile index a166094..ce67e62 100644 --- a/util/debian-install/Vagrantfile +++ b/util/debian-install/Vagrantfile @@ -27,7 +27,7 @@ else end Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| - config.vm.box = "debian/wheezy64" + config.vm.box = "debian/jessie64" config.vm.provision :shell, path: 'install', args: [ENV['REPOSITORY']].compact config.vm.provision :shell, path: 'test' end diff --git a/util/debian-install/install b/util/debian-install/install index 51e4daa..3fa1e9a 100755 --- a/util/debian-install/install +++ b/util/debian-install/install @@ -1,7 +1,7 @@ #!/bin/sh -DISTRO=wheezy -REPOSITORY='wheezy-test' +DISTRO=jessie +REPOSITORY='jessie-test' if [ -n "$1" ]; then REPOSITORY="$1" -- libgit2 0.21.2