From fed703ed4ad7d619d685ef2eaa77a4c1f07bff0f Mon Sep 17 00:00:00 2001 From: buzztdenis Date: Wed, 25 Feb 2015 21:34:23 -0600 Subject: [PATCH 1/8] no chef --- Lab-03-Instructions.md | 4 ++-- baza9762-testfile.md. | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 baza9762-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/baza9762-testfile.md. b/baza9762-testfile.md. new file mode 100644 index 0000000..764ecb0 --- /dev/null +++ b/baza9762-testfile.md. @@ -0,0 +1,4 @@ +"Hello World." +This is my first file +yeyiiiiii + From 091910ecd9553d55e4aa3457acc17ce29c898011 Mon Sep 17 00:00:00 2001 From: buzztdenis Date: Wed, 25 Feb 2015 21:38:05 -0600 Subject: [PATCH 2/8] second commit --- baza9762-testfile.md. | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/baza9762-testfile.md. b/baza9762-testfile.md. index 764ecb0..af00c69 100644 --- a/baza9762-testfile.md. +++ b/baza9762-testfile.md. @@ -1,4 +1,3 @@ "Hello World." -This is my first file -yeyiiiiii +"Hello Again" From f32485ebd2216c3c424f4261f595c29b89dc329b Mon Sep 17 00:00:00 2001 From: buzztdenis Date: Thu, 26 Feb 2015 12:42:09 -0600 Subject: [PATCH 3/8] script commit --- baza9762-Lab03.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 baza9762-Lab03.sh diff --git a/baza9762-Lab03.sh b/baza9762-Lab03.sh new file mode 100755 index 0000000..90ac94d --- /dev/null +++ b/baza9762-Lab03.sh @@ -0,0 +1,7 @@ +#!/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 "BOO" From f40e77823b84087639c9bd9ce2cc099c76f4374b Mon Sep 17 00:00:00 2001 From: buzztdenis Date: Tue, 3 Mar 2015 21:48:07 -0600 Subject: [PATCH 4/8] my first commit --- baza9762-testfile.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 baza9762-testfile.md diff --git a/baza9762-testfile.md b/baza9762-testfile.md new file mode 100644 index 0000000..06ae699 --- /dev/null +++ b/baza9762-testfile.md @@ -0,0 +1 @@ +"Hello World" From fe1d0ec67ecc1475684a57b62278cbe6345ba55a Mon Sep 17 00:00:00 2001 From: buzztdenis Date: Tue, 3 Mar 2015 21:58:14 -0600 Subject: [PATCH 5/8] my third commit --- baza9762-testfile.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/baza9762-testfile.md b/baza9762-testfile.md index 06ae699..035e1ae 100644 --- a/baza9762-testfile.md +++ b/baza9762-testfile.md @@ -1 +1,2 @@ -"Hello World" +"Hello Mars" +"Hello Again" From 9893864d82d3a91aae593d0ad8bf6159afc26db0 Mon Sep 17 00:00:00 2001 From: vagrant Date: Wed, 4 Mar 2015 04:24:47 +0000 Subject: [PATCH 6/8] script commit --- baza9762-Lab03.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/baza9762-Lab03.sh b/baza9762-Lab03.sh index 90ac94d..0a3a293 100755 --- a/baza9762-Lab03.sh +++ b/baza9762-Lab03.sh @@ -1,7 +1,7 @@ -#!/bin/bash +# baza9762-Lab03.sh # Starter shell script # Put commands below # To run, type ./starter.sh (you need the "./") # It must have permissions starting with a "7" -mkdir "BOO" +mkdir "boo" From 0ad00f6f6f7348a5e817770f235a510385ecdd71 Mon Sep 17 00:00:00 2001 From: buzztdenis Date: Tue, 3 Mar 2015 22:54:10 -0600 Subject: [PATCH 7/8] my last commit --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 3ccbac5..c3258f7 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -5,6 +5,6 @@ Vagrant.configure(2) do |config| config.vm.box = "precise64" - config.ssh.private_key_path = "~/.ssh/insecure_private_key" + #config.ssh.private_key_path = "~/.ssh/insecure_private_key" end From 5bb787b5d9a9f8900accebd561a27c940006d0e5 Mon Sep 17 00:00:00 2001 From: vagrant Date: Wed, 4 Mar 2015 05:07:32 +0000 Subject: [PATCH 8/8] last --- baza9762-Lab03.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/baza9762-Lab03.sh b/baza9762-Lab03.sh index 0a3a293..b676ecb 100755 --- a/baza9762-Lab03.sh +++ b/baza9762-Lab03.sh @@ -1,7 +1,11 @@ -# baza9762-Lab03.sh +#!/bin/bash # Starter shell script +# baza9762-Lab03.sh # Put commands below # To run, type ./starter.sh (you need the "./") # It must have permissions starting with a "7" -mkdir "boo" +mkdir -p main/{A/{B,C,D},E/{F,G},H/{I,J/{K,L},M}} +touch 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 tree +sudo apt-get install git