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