Skip to content

Commit

Permalink
Merge pull request #64 from PelionIoT/edge-testnet-ping-err
Browse files Browse the repository at this point in the history
fw-tools/edge-testnet - add || true to google ping
  • Loading branch information
JanneKiiskila authored Jun 24, 2024
2 parents 4e85625 + 56b1608 commit ec39768
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## Izuma Edge utilities 2.3.7
1. [fw-tools] - add `|| true` to 1st `ping` test to avoid abrupt script execution stop if `ping` errors.

## Izuma Edge utilities 2.3.6
1. [fw-tools] - fix handling `-h` (help) option.
1. [fw-tools] - support for custom domains (`--domain`) added, options to skip https/port443 check (`--skip443`) and tcp-bootstrap ping (`--skiptcpping`).
Expand Down
2 changes: 1 addition & 1 deletion edge-info/edge-info
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ GREEN="\u001b[32m"
YELLOW="\u001b[33m"
MAGENTA="\u001b[35m"
CYAN="\u001b[36m"
version="2.3.6"
version="2.3.7"
export LogToTerm=1
loglevel=info;

Expand Down
2 changes: 1 addition & 1 deletion fw-tools/edge-testnet
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ test_TLS() {
}

main() {
pinggoogle=$(ping -q -c 1 google.com 2>&1)
pinggoogle=$(ping -q -c 1 google.com 2>&1) || true
if [[ "$pinggoogle" =~ "100% packet loss" ]]; then
echo "ICMP traffic blocked, skipping L3 (ping) tests."
else
Expand Down
2 changes: 1 addition & 1 deletion identity-tools/developer_identity/VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
2.3.6
2.3.7

0 comments on commit ec39768

Please sign in to comment.