-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #161
- Loading branch information
Showing
15 changed files
with
51 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
CERTIFICATES_PATH=/goss-sup | ||
DEBUG_CCC=yes | ||
CERTIFICATES_PATH=/goss-sup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
. /feature-installer-utils.sh | ||
|
||
FLAVOUR="X$(cat /home/cloudcontrol/flavour)X" | ||
if [[ "X${FLAVOUR}X" =~ X(azure|simple|tanzu|gcloud)X ]] | ||
if [[ "${FLAVOUR}" =~ (simple|tanzu|gcloud) ]] | ||
then | ||
execHandle "Installing jq" sudo apk add jq | ||
elif [ "${FLAVOUR}" == "XawsX" ] | ||
elif [[ "${FLAVOUR}" =~ (azure|aws) ]] | ||
then | ||
execHandle "Installing jq" sudo yum install -y jq | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
USE_packages=yes | ||
PACKAGES=diffutils |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
. /feature-installer-utils.sh | ||
|
||
FLAVOUR="X$(cat /home/cloudcontrol/flavour)X" | ||
if [[ "X${FLAVOUR}X" =~ X(azure|simple|tanzu|gcloud)X ]] | ||
if [[ "${FLAVOUR}" =~ (simple|tanzu|gcloud) ]] | ||
then | ||
execHandle "Installing tzdata package" sudo apk add tzdata | ||
elif [[ "${FLAVOUR}" =~ (azure) ]] | ||
then | ||
execHandle "Installing tzdata package" sudo yum install -y tzdata | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
. /feature-installer-utils.sh | ||
|
||
FLAVOUR="X$(cat /home/cloudcontrol/flavour)X" | ||
if [[ "X${FLAVOUR}X" =~ X(azure|simple|tanzu|gcloud)X ]] | ||
if [[ "${FLAVOUR}" =~ (simple|tanzu|gcloud) ]] | ||
then | ||
execHandle "Installing vim" sudo apk add vim | ||
elif [ "${FLAVOUR}" == "XawsX" ] | ||
elif [[ "${FLAVOUR}" =~ (aws|azure) ]] | ||
then | ||
execHandle "Installing vim" sudo yum install -y vim | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters