Skip to content
Snippets Groups Projects
Commit c6a6b1fb authored by david_williams's avatar david_williams
Browse files

misc utility scripts

parent 7d692f4e
No related branches found
No related tags found
No related merge requests found
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
function usage() { function usage() {
printf "\n\tSimple script to count number of mirrors available for a particular URL" >&2 printf "\n\tSimple script to count number of mirrors available for a particular URL" >&2
printf "\n\tUsage: %s [-h] | [-v] [-f] [-p] urls" $(basename $0) >&2 printf "\n\tUsage: %s [-h] | [-v] [-f] [-p] [-t number] urls" $(basename $0) >&2
printf "\n\t\t%s" "where h==help, v==verbose, f==only ftp mirrors, p==only http mirrors " >&2 printf "\n\t\t%s" "where h==help, v==verbose, f==only ftp mirrors, p==only http mirrors, t==test against 'number' " >&2
printf "\n\t\t%s" "and urls is space delimited list of URL parameters," >&2 printf "\n\t\t%s" "and urls is space delimited list of URL parameters," >&2
printf "\n\t\t%s\n" "such as /ganymede/releases/site.xml" >&2 printf "\n\t\t%s\n" "such as /ganymede/releases/site.xml" >&2
} }
...@@ -39,15 +39,34 @@ function checkMirrorsForURL() { ...@@ -39,15 +39,34 @@ function checkMirrorsForURL() {
fi fi
nMirrors=$(wget -q -O - "http://www.eclipse.org/downloads/download.php?file=${mirrorURL}&format=xml${protocolarg}" | grep \<mirror\ | wc -l) nMirrors=$(wget -q -O - "http://www.eclipse.org/downloads/download.php?file=${mirrorURL}&format=xml${protocolarg}" | grep \<mirror\ | wc -l)
echo " number of" ${pword} "mirrors: " ${nMirrors} " for" ${mirrorURL} echo " number of" ${pword} "mirrors: " ${nMirrors} " for" ${mirrorURL} >&2
echo $nMirrors
}
function minvalue() {
ref=$1
comp=$2
result=
if [ -z $comp ]
then
result=$ref
else
if [ $ref -lt $comp ]
then
result=$ref
else
result=$comp
fi
fi
echo $result
} }
urls= urls=
ftponly=0 ftponly=0
httponly=0 httponly=0
protocol= protocol=
while getopts 'hvfp' OPTION while getopts 'hvfpt:' OPTION
do do
case $OPTION in case $OPTION in
h) usage h) usage
...@@ -59,6 +78,8 @@ do ...@@ -59,6 +78,8 @@ do
;; ;;
v) verbose=1 v) verbose=1
;; ;;
t) testNumber=$OPTARG
;;
?) usage ?) usage
exit 2 exit 2
;; ;;
...@@ -67,7 +88,7 @@ done ...@@ -67,7 +88,7 @@ done
shift $(($OPTIND - 1)) shift $(($OPTIND - 1))
urls=$* urls="$@"
if [ $ftponly == 1 ] if [ $ftponly == 1 ]
then then
...@@ -89,14 +110,41 @@ then ...@@ -89,14 +110,41 @@ then
echo "urls: " $urls echo "urls: " $urls
fi fi
minimumMirrors=
if [ "${urls}" ] if [ "${urls}" ]
then then
echo echo
for mirrorURL in $urls for mirrorURL in ${urls}
do do
checkMirrorsForURL $mirrorURL $protocol nm=$(checkMirrorsForURL $mirrorURL $protocol)
minimumMirrors=`minvalue $nm $minimumMirrors`
done done
echo echo
else else
usage usage
fi fi
if [ -z $testNumber ]
then
if [ $verbose ]
then
echo "no test mode"
fi
exit 0
else
fresult=$((testNumber - minimumMirrors))
if [ $fresult -le 0 ]
then
if [ $verbose ]
then
echo "minimum mirrors was greater than or equal to criteria"
fi
exit 0
else
if [ $verbose ]
then
echo "minimum mirrors was not as large as criteria"
fi
exit $fresult
fi
fi
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment