diff --git a/README.md b/README.md index 790a139..37fe54d 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ Instructions for Practice Project ======================================== -These instructions assume familiarity with Git and GitHub. If you are not comfortable with those tools, please complete Udacity's [How to Use Git and GitHub](https://www.udacity.com/course/how-to-use-git-and-github--ud775) course before proceeding. +These instructions assume familiarity with Git and GitHub. If you are not comfortable with those tools, please complete Udacity's [How to Use Git and GitHub](https://www.udacity.com/course/how-to-use-git-and-github--ud775) course before proceeding. -After installing the required tools, you will need to ensure that your computer can find the executables to run them. For this, you might need to modify the PATH environment variable. A good overview is at [superuser.com](https://superuser.com/questions/284342/what-are-path-and-other-environment-variables-and-how-can-i-set-or-use-them). You may need to search the web for instructions on how to set the PATH variable for your specific operating system and version. +After installing the required tools, you will need to ensure that your computer can find the executables to run them. For this, you might need to modify the PATH environment variable. A good overview is at [superuser.com](https://superuser.com/questions/284342/what-are-path-and-other-environment-variables-and-how-can-i-set-or-use-them). You may need to search the web for instructions on how to set the PATH variable for your specific operating system and version. ## Setting up your local machine @@ -33,19 +33,19 @@ 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 ## Part II: Cloning, developing, and running the web application -* On your local machine go to the root directory of the cloned repository +* On your local machine go to the root directory of the cloned repository * 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. -* Now you can run tests with the command `grunt -v`. The tests will run, then quit with an error. +* 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", diff --git a/packer-templates/control-server.json b/packer-templates/control-server.json index 296281f..a0ac27a 100644 --- a/packer-templates/control-server.json +++ b/packer-templates/control-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",