Skip to content

Commit

Permalink
ajusted webOnline so it does not pick only 3. Shouldn't be necessary …
Browse files Browse the repository at this point in the history
…since main.bash alrady has a check for already running script
  • Loading branch information
cyclingzealot committed Feb 2, 2018
1 parent 0a5585a commit 0688c11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webOnline.bash
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ if [[ ! -f $configFile ]]; then
body="No pages to test for $__base"
fi

for page in `cat $configFile | sort | uniq | sort -R | head -n 3`; do
for page in `cat $configFile | sort | uniq | sort -R `; do
START=$(date +%s.%N)
TH=10
if ! curl -k -I -fs --max-time $TH $page | head -n 1 ; then
Expand Down

0 comments on commit 0688c11

Please sign in to comment.