Skip to content

Commit dd74d41

Browse files
committed
Change to ubuntu/trusty64.
1 parent 417b05a commit dd74d41

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

Vagrantfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

provision.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33

44
export DEBIAN_FRONTEND=noninteractive
55

6-
aptitude update
76
aptitude purge -y chef chef-zero puppet puppet-common
8-
aptitude dist-upgrade -y
7+
aptitude update
8+
aptitude upgrade -y
9+
910
ln -sf /vagrant /home/vagrant/
1011
mkdir -p /var/www
1112
ln -sf /vagrant/pythonkc_site /var/www/pythonkc_site

0 commit comments

Comments
 (0)