diff --git a/README.md b/README.md index 790a139..ff9adce 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Build 'virtualbox-iso' errored: ISO download failed. ``` * Run `cd virtualbox` -* Run `vagrant box add ubuntu-14.04.4-server-amd64-appserver_virtualbox.box --name devops-appserver` +* Run `vagrant box add ubuntu-14.04.5-server-amd64-appserver_virtualbox.box --name devops-appserver` * Run `vagrant up` * Run `vagrant ssh` to connect to the server @@ -44,7 +44,7 @@ Build 'virtualbox-iso' errored: ISO download failed. * Run `git clone https://github.com/chef/devops-kungfu.git devops-kungfu` * Open http://localhost:8080 from your local machine to see the app running. * In the VM, run `cd devops-kungfu` -* To install app specific node packages, run `sudo npm install`. You may see several errors; they can be ignored for now. +* To install app specific node packages, run `sudo apt install npm`. You may see several errors; they can be ignored for now. * Now you can run tests with the command `grunt -v`. The tests will run, then quit with an error. ### Troubleshooting diff --git a/packer-templates/application-server.json b/packer-templates/application-server.json index f6e1b9c..6ed5daa 100644 --- a/packer-templates/application-server.json +++ b/packer-templates/application-server.json @@ -1,7 +1,7 @@ { "variables": { "PACKER_OS_FLAVOUR": "ubuntu", - "PACKER_BOX_NAME": "ubuntu-14.04.4-server-amd64", + "PACKER_BOX_NAME": "ubuntu-14.04.5-server-amd64", "AWS_ACCESS_KEY_ID": "{{env `AWS_ACCESS_KEY_ID`}}", "AWS_SECRET_ACCESS_KEY": "{{env `AWS_SECRET_ACCESS_KEY`}}", "DIGITALOCEAN_API_TOKEN": "{{env `DIGITALOCEAN_API_TOKEN`}}" @@ -39,7 +39,7 @@ "guest_additions_path": "VBoxGuestAdditions_{{.Version}}.iso", "guest_os_type": "Ubuntu_64", "http_directory": "http", - "iso_checksum": "07e4bb5569814eab41fafac882ba127893e3ff0bdb7ec931c9b2d040e3e94e7a", + "iso_checksum": "dde07d37647a1d2d9247e33f14e91acb10445a97578384896b4e1d985f754cc1", "iso_checksum_type": "sha256", "iso_url": "http://releases.ubuntu.com/trusty/{{ user `PACKER_BOX_NAME` }}.iso", "shutdown_command": "echo 'vagrant'|sudo -S shutdown -P now",