mirror of https://github.com/LemmyNet/lemmy.git
Add apache benchmark installation check
parent
be6a7876b4
commit
09836bffef
|
@ -11,6 +11,12 @@ declare -a arr=(
|
||||||
"https://torrents-csv.ml/service/search?q=wheel&page=1&type_=torrent"
|
"https://torrents-csv.ml/service/search?q=wheel&page=1&type_=torrent"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
## check if ab installed
|
||||||
|
if ! [ -x "$(command -v ab)" ]; then
|
||||||
|
echo 'Error: ab (Apache Bench) is not installed. https://httpd.apache.org/docs/2.4/programs/ab.html' >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
## now loop through the above array
|
## now loop through the above array
|
||||||
for i in "${arr[@]}"
|
for i in "${arr[@]}"
|
||||||
do
|
do
|
||||||
|
|
|
@ -15,6 +15,12 @@ declare -a arr=(
|
||||||
"/api/v1/post/list?sort=Hot&type_=All"
|
"/api/v1/post/list?sort=Hot&type_=All"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
## check if ab installed
|
||||||
|
if ! [ -x "$(command -v ab)" ]; then
|
||||||
|
echo 'Error: ab (Apache Bench) is not installed. https://httpd.apache.org/docs/2.4/programs/ab.html' >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
## now loop through the above array
|
## now loop through the above array
|
||||||
for path in "${arr[@]}"
|
for path in "${arr[@]}"
|
||||||
do
|
do
|
||||||
|
|
Loading…
Reference in New Issue