File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -41,13 +41,13 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
4141 end
4242
4343 config . vm . define "pykcdotdev" do |pykcdotdev |
44- pykcdotdev . vm . box = "debian/jessie64 "
44+ pykcdotdev . vm . box = "ubuntu/trusty64 "
4545 pykcdotdev . vm . hostname = "pythonkc.dev"
46- pykcdotdev . vm . network "private_network" , ip : "192.168.100 .101"
46+ pykcdotdev . vm . network "private_network" , ip : "192.168.101 .101"
4747 if OS . unix?
4848 pykcdotdev . vm . synced_folder "./" , "/vagrant/" , type : "nfs"
4949 elsif OS . windows?
50- pykcdotdev . vm . synced_folder "./" , "/vagrant/" # , type: "smb"
50+ pykcdotdev . vm . synced_folder "./" , "/vagrant/" , type : "smb"
5151 else
5252 raise 'Unknown host operating system. Cannot continue.'
5353 end
Original file line number Diff line number Diff line change 33
44export DEBIAN_FRONTEND=noninteractive
55
6- aptitude update
76aptitude purge -y chef chef-zero puppet puppet-common
8- aptitude dist-upgrade -y
7+ aptitude update
8+ aptitude upgrade -y
9+
910ln -sf /vagrant /home/vagrant/
1011mkdir -p /var/www
1112ln -sf /vagrant/pythonkc_site /var/www/pythonkc_site
You can’t perform that action at this time.
0 commit comments