Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Drupal Upstream
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ASC IRIS Web Services
Drupal Upstream
Commits
ef54831e
Commit
ef54831e
authored
4 years ago
by
Brian Weaver
Browse files
Options
Downloads
Patches
Plain Diff
Homepage status check scripts
parent
49fe6193
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
scripts/homepage_status.sh
+35
-0
35 additions, 0 deletions
scripts/homepage_status.sh
scripts/status_check.sh
+36
-0
36 additions, 0 deletions
scripts/status_check.sh
with
71 additions
and
0 deletions
scripts/homepage_status.sh
0 → 100644
+
35
−
0
View file @
ef54831e
#!/usr/bin/env bash
if
[[
-z
$1
||
-z
$2
]]
;
then
echo
;
echo
"Usage:
$0
<site> <env>"
;
echo
;
echo
;
exit
1
;
fi
if
[[
$2
==
'live'
]]
;
then
DOMAIN
=
$(
terminus domain:list
$1
.
$2
--field
=
id
--filter
=
type
=
custom |
sort
|
head
-1
)
;
else
terminus
env
:wake
$1
.
$2
--quiet
;
DOMAIN
=
$(
terminus domain:list
$1
.
$2
--field
=
id
--filter
=
type
=
platform |
sort
|
head
-1
)
;
fi
# echo "Domain: $DOMAIN";
if
[[
!
$DOMAIN
==
''
]]
;
then
RESPONSE
=
`
curl
-ksSL
-w
"%{http_code} %{url_effective}"
-o
/dev/null https://
${
DOMAIN
}
`
;
#echo -n ".";
HTTP_CODE
=
`
echo
"
$RESPONSE
"
|
cut
-d
' '
-f
1
`
;
URL_EFFECTIVE
=
`
echo
"
$RESPONSE
"
|
cut
-d
' '
-f
2
`
;
if
[[
"
$HTTP_CODE
"
==
"200"
]]
;
then
echo
"OK:
$URL_EFFECTIVE
"
;
elif
[[
"
$HTTP_CODE
"
==
"404"
]]
;
then
echo
"404
$URL_EFFECTIVE
"
else
# echo "######################################";
echo
"Error:
$HTTP_CODE
$URL_EFFECTIVE
"
;
fi
fi
This diff is collapsed.
Click to expand it.
scripts/status_check.sh
0 → 100644
+
36
−
0
View file @
ef54831e
#!/usr/bin/env bash
if
[[
-z
$1
]]
;
then
echo
;
echo
"Usage:
$0
<env>"
;
echo
;
echo
;
exit
1
;
fi
SITES
=
$(
terminus org:site:list ohio-state-arts-and-sciences
--upstream
=
b9baf7af-eb2c-4db5-81e6-32d3d9042572
--tag
=
D8
--fields
=
name
--format
=
string |
sort
)
;
echo
$SITES
;
parallel
--delay
0.1
"./homepage_status.sh {}
$1
"
:::
$SITES
# for f in `terminus org:site:list ohio-state-arts-and-sciences --upstream=b9baf7af-eb2c-4db5-81e6-32d3d9042572 --tag=D8 --fields=name --format=string`; do
# if [[ ! -z "$1" ]]; then
# SITE="$1.$f";
# else
# SITE="$f";
# fi
# #echo -n ".";
# RESPONSE=`curl -ksSL -w "%{http_code} %{url_effective}" -o /dev/null https://${SITE}`;
# #echo -n ".";
# HTTP_CODE=`echo "$RESPONSE" | cut -d' ' -f 1`;
# URL_EFFECTIVE=`echo "$RESPONSE" | cut -d' ' -f 2`;
# if [[ "$HTTP_CODE" == "200" ]]; then
# echo "OK $URL_EFFECTIVE";
# else
# echo "######################################";
# echo "Error: $HTTP_CODE $URL_EFFECTIVE";
# fi
# done
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment