Skip to content

Commit

Permalink
Fix for cf-cli cert expired
Browse files Browse the repository at this point in the history
Adds a workaround to deal w/ the fact that the
cf-cli cert is expired.

See cloudfoundry/cli#3194
  • Loading branch information
onobc committed Sep 11, 2024
1 parent 13c39a0 commit ba6ff16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scdf_cf_setup/cf-scdf-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ if [[ "$os" = "Linux" ]]; then
wget -q -O - https://packages.cloudfoundry.org/debian/cli.cloudfoundry.org.key | sudo apt-key add -
echo "deb https://packages.cloudfoundry.org/debian stable main" | sudo tee /etc/apt/sources.list.d/cloudfoundry-cli.list
sudo apt-get update
sudo apt-get install cf-cli
sudo apt-get install cf-cli --allow-unauthenticated -y
fi
if [[ "$SQL_PROVIDER" = "oracle" ]]; then
echo "Installing ORACLE components"
Expand Down
2 changes: 1 addition & 1 deletion scripts/at-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ if [[ "$os" = "Linux" ]]; then
wget -q -O - https://packages.cloudfoundry.org/debian/cli.cloudfoundry.org.key | sudo apt-key add -
echo "deb https://packages.cloudfoundry.org/debian stable main" | sudo tee /etc/apt/sources.list.d/cloudfoundry-cli.list
sudo apt-get update
sudo apt-get install cf-cli
sudo apt-get install cf-cli --allow-unauthenticated -y
fi
if [[ "$SQL_PROVIDER" = "oracle" ]]; then
echo "Installing ORACLE components"
Expand Down

0 comments on commit ba6ff16

Please sign in to comment.