Skip to content

Commit 6027cd7

Browse files
committed
Jessie64.
1 parent 783a40a commit 6027cd7

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Files for the PythonKC.com website.
66

77
```
88
vagrant plugin install vagrant-hostmanager
9-
vagrant plugin install vagrant-vbguest
9+
vagrant plugin install vagrant-hostsupdater
1010
vagrant up
1111
```
1212

Vagrantfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
1010
raise 'vagrant-hostmanager is not installed. run: vagrant plugin install vagrant-hostmanager'
1111
end
1212

13-
# vagrant-vbguest plugin is required
14-
unless Vagrant.has_plugin?("vagrant-vbguest")
15-
raise 'vagrant-vbguest is not installed. run: vagrant plugin install vagrant-vbguest'
13+
# vagrant-hostsupdater plugin is required
14+
unless Vagrant.has_plugin?("vagrant-hostsupdater")
15+
raise 'vagrant-hostsupdater is not installed. run: vagrant plugin install vagrant-hostsupdater'
1616
end
1717

1818
config.vm.define "pykcdotdev" do |pykcdotdev|
19-
pykcdotdev.vm.box = "box-cutter/debian81"
19+
pykcdotdev.vm.box = "debian/jessie64"
2020
pykcdotdev.vm.hostname = "pythonkc.dev"
2121
pykcdotdev.vm.network "private_network", ip: "192.168.100.101"
2222
pykcdotdev.vm.synced_folder "./", "/vagrant/"

provision.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,14 @@
33

44
export DEBIAN_FRONTEND=noninteractive
55

6+
aptitude update
7+
aptitude dist-upgrade -y
8+
aptitude install build-essential -y
9+
aptitude install linux-headers-amd64 -y
610
ln -sf /vagrant /home/vagrant/
711

812
if [[ -z "$(which ansible)" ]]; then
9-
echo "Installing ansible"
10-
aptitude update
13+
echo "Installing Ansible..."
1114
aptitude install -y python3 python3-dev python3-pip ansible
1215
fi
1316

0 commit comments

Comments
 (0)