From 931ad56dc0a0bacf51d83b67802dee6c1f2f3d1e Mon Sep 17 00:00:00 2001 From: Neal Briest Date: Wed, 25 Feb 2015 14:54:50 -0600 Subject: [PATCH 1/5] no chef --- Lab-03-Instructions.md | 4 ++-- brie4686-testfile.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 brie4686-testfile.md diff --git a/Lab-03-Instructions.md b/Lab-03-Instructions.md index dc98b47..bc969d8 100644 --- a/Lab-03-Instructions.md +++ b/Lab-03-Instructions.md @@ -593,7 +593,7 @@ Edit your Vagrantfile so that it calls your *-Lab03.sh script when you provision Vagrant.configure(2) do |config| config.vm.box = "precise64" config.ssh.private_key_path = "~/.ssh/insecure_private_key" - config.vm.provision :shell, path: "./MyID-Lab03.sh" + config.vm.provision :shell, path: "./MyStudentID-Lab03.sh" end ```` @@ -606,5 +606,5 @@ Re-commit your Vagrantfile and push it back to origin. Issue a pull request for me to review your work. -That is the end of this lab. Congratulations, this was a lot of work. Next week, we will Write a Chef recipe that is run by Vagrant to do the same thing, and start building a continuous integration pipeline with Java, JUnit and Ant. +That is the end of this lab. Congratulations, this was a lot of work. Next week, we will start building a continuous integration pipeline with git, Java, JUnit, Tomcat, and Ant. diff --git a/brie4686-testfile.md b/brie4686-testfile.md new file mode 100644 index 0000000..2965834 --- /dev/null +++ b/brie4686-testfile.md @@ -0,0 +1 @@ +# Hello World From 15fc26b48f459094e07036b02469c5d7626dbec3 Mon Sep 17 00:00:00 2001 From: Neal Briest Date: Wed, 25 Feb 2015 15:42:35 -0600 Subject: [PATCH 2/5] Second Commit --- brie4686-testfile.md | 1 + 1 file changed, 1 insertion(+) diff --git a/brie4686-testfile.md b/brie4686-testfile.md index 2965834..e18fd4f 100644 --- a/brie4686-testfile.md +++ b/brie4686-testfile.md @@ -1 +1,2 @@ # Hello World +## Hello Again From aa0e45a51a085cd81a9c02435d0a9a798bdec585 Mon Sep 17 00:00:00 2001 From: Neal Briest Date: Wed, 25 Feb 2015 15:47:23 -0600 Subject: [PATCH 3/5] Third Commit --- brie4686-testfile.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brie4686-testfile.md b/brie4686-testfile.md index e18fd4f..b198f94 100644 --- a/brie4686-testfile.md +++ b/brie4686-testfile.md @@ -1,2 +1,2 @@ -# Hello World +# Hello Mars ## Hello Again From f12314db6b6a5d79bdc14d909f9662efeb942020 Mon Sep 17 00:00:00 2001 From: vagrant Date: Sat, 28 Feb 2015 01:45:07 +0000 Subject: [PATCH 4/5] Lab 3 (brie4686): Vagrantfile --- brie4686-Lab03.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 brie4686-Lab03.sh diff --git a/brie4686-Lab03.sh b/brie4686-Lab03.sh new file mode 100755 index 0000000..b712fe0 --- /dev/null +++ b/brie4686-Lab03.sh @@ -0,0 +1,10 @@ +#!/bin/bash +# Starter shell script +# Put commands below +# To run, type ./starter.sh (you need the "./") +# It must have permissions starting with a "7" + +mkdir -p main/{A/{B,C,D},E/{F,G},H{I,J/{K,L},M}} +sudo apt-get install -y tree +sudo apt-get install -y git + From d88c8edb569712e314617c89c77411efe0b6c625 Mon Sep 17 00:00:00 2001 From: Neal Briest Date: Fri, 27 Feb 2015 20:30:37 -0600 Subject: [PATCH 5/5] supplementary commit --- brie4686-Lab03.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/brie4686-Lab03.sh b/brie4686-Lab03.sh index b712fe0..a990de4 100755 --- a/brie4686-Lab03.sh +++ b/brie4686-Lab03.sh @@ -5,6 +5,7 @@ # It must have permissions starting with a "7" mkdir -p main/{A/{B,C,D},E/{F,G},H{I,J/{K,L},M}} +touch -p main/{A/{aa,B/bb,C/cc,D/dd},E/{ee,F/ff,G/gg},H/{hh,I/ii,J/{jj,K/kk,L/ll},M/mm}} sudo apt-get install -y tree sudo apt-get install -y git