diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2022-12-14 12:08:14 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2022-12-14 12:08:14 +0000 |
commit | 075c890053f626018ba680e4da21a93743acb244 (patch) | |
tree | f7a417c83956d02522c6234070974e4e53f9cd34 /scripts | |
parent | af60c8a79f77c8230292a133fb9d09dab5cd5cd3 (diff) | |
download | gitlab-ce-075c890053f626018ba680e4da21a93743acb244.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/review_apps/review-apps.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/review_apps/review-apps.sh b/scripts/review_apps/review-apps.sh index 1481cecba74..e185ed43e38 100755 --- a/scripts/review_apps/review-apps.sh +++ b/scripts/review_apps/review-apps.sh @@ -373,7 +373,9 @@ function display_deployment_debug() { local namespace="${CI_ENVIRONMENT_SLUG}" # Install dig to inspect DNS entries - apt update && apt install -y dnsutils + # + # Silent install: see https://stackoverflow.com/a/52642167/1620195 + apt-get -qq update && apt-get -qq install -y dnsutils < /dev/null > /dev/null echoinfo "[debugging data] Check review-app webservice DNS entry:" dig +short $(echo "${CI_ENVIRONMENT_URL}" | sed 's~http[s]*://~~g') |