Commit 42f3fa97152d1c3fa0513c347785e296259d8d2e
1 parent
e5a47793
Exists in
staging
and in
37 other branches
util/debian-install: update to install on jessie
Showing
3 changed files
with
5 additions
and
5 deletions
Show diff stats
util/debian-install/README.md
... | ... | @@ -28,8 +28,8 @@ $ rm -f pkg/ |
28 | 28 | $ cd utils/debian-install/ |
29 | 29 | $ vagrant destroy |
30 | 30 | $ rm -f *.deb |
31 | -$ REPOSITORY=wheezy vagrant up # install current stable version | |
31 | +$ REPOSITORY=jessie vagrant up # install current stable version | |
32 | 32 | $ cd ../../ |
33 | 33 | $ make noosfero:deb # build current packages |
34 | -$ REPOSITORY=wheezy-next vagrant provision # upgrade | |
34 | +$ REPOSITORY=jessie-next vagrant provision # upgrade | |
35 | 35 | ``` | ... | ... |
util/debian-install/Vagrantfile
... | ... | @@ -27,7 +27,7 @@ else |
27 | 27 | end |
28 | 28 | |
29 | 29 | Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| |
30 | - config.vm.box = "debian/wheezy64" | |
30 | + config.vm.box = "debian/jessie64" | |
31 | 31 | config.vm.provision :shell, path: 'install', args: [ENV['REPOSITORY']].compact |
32 | 32 | config.vm.provision :shell, path: 'test' |
33 | 33 | end | ... | ... |