Skip to content

Commit

Permalink
use wheezy+backports
Browse files Browse the repository at this point in the history
  • Loading branch information
emillon committed Oct 28, 2014
1 parent 9ad7baa commit dc46fe3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Vagrant.configure("2") do |config|
config.vm.box = "debian80"
config.vm.box_url = "https://downloads.sourceforge.net/project/vagrantboxjessie/debian80.box"
config.vm.box = 'wheezy64'
config.vm.box_url = 'http://vagrant.1024.lu/wheezy64.box'
config.vm.provision "ansible" do |ansible|
ansible.playbook = "devops/provision.yml"
ansible.host_key_checking = false
Expand Down
3 changes: 3 additions & 0 deletions devops/provision.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
sudo: True

tasks:
- name: add backports
apt_repository: repo="deb http://http.debian.net/debian wheezy-backports main"

- name: install common packages needed for python application development
action: apt pkg={{item}} state=installed update_cache=yes
with_items:
Expand Down

0 comments on commit dc46fe3

Please sign in to comment.