File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed
Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Files for the PythonKC.com website.
66
77```
88vagrant plugin install vagrant-hostmanager
9- vagrant plugin install vagrant-vbguest
9+ vagrant plugin install vagrant-hostsupdater
1010vagrant up
1111```
1212
Original file line number Diff line number Diff 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/"
Original file line number Diff line number Diff line change 33
44export 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
610ln -sf /vagrant /home/vagrant/
711
812if [[ -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
1215fi
1316
You can’t perform that action at this time.
0 commit comments