From 43cab81f58184506c39844cb580caa505ea888c6 Mon Sep 17 00:00:00 2001 From: Vicky Date: Fri, 9 Feb 2018 22:40:32 -0600 Subject: [PATCH 01/12] my first commit --- vue07418-testfile.adoc | 1 + 1 file changed, 1 insertion(+) create mode 100644 vue07418-testfile.adoc diff --git a/vue07418-testfile.adoc b/vue07418-testfile.adoc new file mode 100644 index 0000000..ba7182b --- /dev/null +++ b/vue07418-testfile.adoc @@ -0,0 +1 @@ +Hello World! My name is Vicky Vue! From c14430e36eefa4064aaa75daf1198f9b7bfefb56 Mon Sep 17 00:00:00 2001 From: Vicky Date: Fri, 9 Feb 2018 22:42:07 -0600 Subject: [PATCH 02/12] second commit --- vue07418-testfile.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vue07418-testfile.adoc b/vue07418-testfile.adoc index ba7182b..5551377 100644 --- a/vue07418-testfile.adoc +++ b/vue07418-testfile.adoc @@ -1 +1,3 @@ Hello World! My name is Vicky Vue! + +Hello Again! From 51e1b928cc7d20861fad4acb67f7273a424c1248 Mon Sep 17 00:00:00 2001 From: Vicky Date: Fri, 9 Feb 2018 22:43:00 -0600 Subject: [PATCH 03/12] third commit --- vue07418-testfile.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vue07418-testfile.adoc b/vue07418-testfile.adoc index 5551377..9a66a2a 100644 --- a/vue07418-testfile.adoc +++ b/vue07418-testfile.adoc @@ -1,3 +1,3 @@ -Hello World! My name is Vicky Vue! +Hello Mars! My name is Vicky Vue! Hello Again! From 84d3b408fbc1e07a156fc29c399779b53154cc2e Mon Sep 17 00:00:00 2001 From: Vicky Date: Sat, 10 Feb 2018 05:58:25 +0000 Subject: [PATCH 04/12] script commit --- vue07418-Lab02.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 vue07418-Lab02.sh diff --git a/vue07418-Lab02.sh b/vue07418-Lab02.sh new file mode 100755 index 0000000..9638967 --- /dev/null +++ b/vue07418-Lab02.sh @@ -0,0 +1,18 @@ +#!/bin/bash +# Starter shell script +# Rename as YourID-Lab02.sh +# Put commands below +# To run, type ./YourID-Lab02.sh (you need the "./") +# It must have permissions starting with a "7" + +mkdir -p /vagrant/A/{aa,B/bb,C/cc,D/dd} + +mkdir -p /vagrant/C/{cc,E/ee,F/ff} + +mkdir -p /vagrant/D/{dd,G/gg,H/{hh,J/jj,K/kk},I/ii} + + +tree + +tree > tree.txt + From d37eaed6a05c23859eb5bc7d4290726459e2b15b Mon Sep 17 00:00:00 2001 From: Vicky Date: Sat, 10 Feb 2018 06:02:36 +0000 Subject: [PATCH 05/12] 2nd script commit --- vue07418-Lab02.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vue07418-Lab02.sh b/vue07418-Lab02.sh index 9638967..0c628ea 100755 --- a/vue07418-Lab02.sh +++ b/vue07418-Lab02.sh @@ -5,11 +5,11 @@ # To run, type ./YourID-Lab02.sh (you need the "./") # It must have permissions starting with a "7" -mkdir -p /vagrant/A/{aa,B/bb,C/cc,D/dd} +mkdir -p /vagrant/main/A/{aa,B/bb,C/cc,D/dd} -mkdir -p /vagrant/C/{cc,E/ee,F/ff} +mkdir -p /vagrant/main/E/{ee,F/ff,G/gg} -mkdir -p /vagrant/D/{dd,G/gg,H/{hh,J/jj,K/kk},I/ii} +mkdir -p /vagrant/main/H/{hh,I/ii,J/{jj,K/kk,L/ll},M/mm} tree From af41c9b78d019c6280587b3644625a9f11c04662 Mon Sep 17 00:00:00 2001 From: Vicky Date: Sat, 10 Feb 2018 00:15:27 -0600 Subject: [PATCH 06/12] Vagrantfile commit --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index f5a3c8c..eac8b41 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -5,5 +5,5 @@ Vagrant.configure(2) do |config| config.vm.box = "ubuntu/xenial64" config.vm.box_url = "/var/vagrant/boxes/xenial64.box" - + config.vm.provision :shell, path: "./vue07418-Lab02.sh" end From 951b244bb314b2934d8f2cb7f77f32b9b80daa88 Mon Sep 17 00:00:00 2001 From: Vicky Date: Sun, 11 Feb 2018 21:45:23 +0000 Subject: [PATCH 07/12] second script commit --- vue07418-Lab02.sh | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/vue07418-Lab02.sh b/vue07418-Lab02.sh index 0c628ea..1599bc2 100755 --- a/vue07418-Lab02.sh +++ b/vue07418-Lab02.sh @@ -5,14 +5,5 @@ # To run, type ./YourID-Lab02.sh (you need the "./") # It must have permissions starting with a "7" -mkdir -p /vagrant/main/A/{aa,B/bb,C/cc,D/dd} - -mkdir -p /vagrant/main/E/{ee,F/ff,G/gg} - -mkdir -p /vagrant/main/H/{hh,I/ii,J/{jj,K/kk,L/ll},M/mm} - - -tree - -tree > tree.txt - +mkdir -p /vagrant/main/{A/{B,C,D},E/{F,G},H/{I,J/{K,L},M}} +touch /vagrant/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}} From aa7bf6d224a0d1a67525f3f9f49b2fdbc1518a76 Mon Sep 17 00:00:00 2001 From: Vicky Date: Sun, 11 Feb 2018 22:00:55 +0000 Subject: [PATCH 08/12] Vagrantfile commit --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index eac8b41..a16073e 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -5,5 +5,5 @@ Vagrant.configure(2) do |config| config.vm.box = "ubuntu/xenial64" config.vm.box_url = "/var/vagrant/boxes/xenial64.box" - config.vm.provision :shell, path: "./vue07418-Lab02.sh" + config.vm.provision :shell, path: "./vue07418-Lab02.sh" end From 8618c0489c61ec40195482d653c5d35c1dbb07de Mon Sep 17 00:00:00 2001 From: Vicky Date: Sat, 17 Feb 2018 01:23:41 +0000 Subject: [PATCH 09/12] 2nd script commit --- vue07418-Lab02.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vue07418-Lab02.sh b/vue07418-Lab02.sh index 1599bc2..ffd8d39 100755 --- a/vue07418-Lab02.sh +++ b/vue07418-Lab02.sh @@ -7,3 +7,5 @@ mkdir -p /vagrant/main/{A/{B,C,D},E/{F,G},H/{I,J/{K,L},M}} touch /vagrant/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}} +apt-get install -y tree +apt-get install -y git From d945c05725aade46a3486cc06b06e0c824dea08d Mon Sep 17 00:00:00 2001 From: Vicky Date: Fri, 16 Feb 2018 19:34:16 -0600 Subject: [PATCH 10/12] Vagrantfile commit --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index a16073e..485860f 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -5,5 +5,5 @@ Vagrant.configure(2) do |config| config.vm.box = "ubuntu/xenial64" config.vm.box_url = "/var/vagrant/boxes/xenial64.box" - config.vm.provision :shell, path: "./vue07418-Lab02.sh" + config.vm.provision :shell, path: "./vue07418-Lab02.sh" end From 3cff2e5add4b3dd0196b5f86a44f2d3c4ca851f4 Mon Sep 17 00:00:00 2001 From: Vicky Date: Sat, 17 Feb 2018 01:52:00 +0000 Subject: [PATCH 11/12] Vagrantfile commit --- Vagrantfile | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 485860f..b99d022 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -5,5 +5,18 @@ Vagrant.configure(2) do |config| config.vm.box = "ubuntu/xenial64" config.vm.box_url = "/var/vagrant/boxes/xenial64.box" - config.vm.provision :shell, path: "./vue07418-Lab02.sh" + + + # Enable provisioning with a shell script. Additional provisioners such as + # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the + # documentation for more information about their specific syntax and use. + config.vm.provision "shell", inline: <<-SHELL + apt-get update + apt-get install -y apache2 + config.vm.provision :shell, path: "./vue07418-Lab02.sh" + + + SHELL + + end From 56309cecf3b6c5dc1a209cc921b7127c1dd3f545 Mon Sep 17 00:00:00 2001 From: Vicky Date: Sat, 17 Feb 2018 02:05:57 +0000 Subject: [PATCH 12/12] Vagrantfile commit --- Vagrantfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index b99d022..6f9c91a 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -5,17 +5,13 @@ Vagrant.configure(2) do |config| config.vm.box = "ubuntu/xenial64" config.vm.box_url = "/var/vagrant/boxes/xenial64.box" - + config.vm.provision :shell, path: "./vue07418-Lab02.sh" # Enable provisioning with a shell script. Additional provisioners such as # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the # documentation for more information about their specific syntax and use. config.vm.provision "shell", inline: <<-SHELL apt-get update - apt-get install -y apache2 - config.vm.provision :shell, path: "./vue07418-Lab02.sh" - - SHELL