Skip to content

Commit

Permalink
Merge pull request #12754 from Security-Onion-Solutions/jertel/ana
Browse files Browse the repository at this point in the history
skip telemetry summary in airgap mode
  • Loading branch information
jertel authored Apr 4, 2024
2 parents b0aee23 + 6046848 commit 204f444
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions setup/so-whiptail
Original file line number Diff line number Diff line change
Expand Up @@ -451,10 +451,12 @@ whiptail_end_settings() {
done
fi

if [[ $telemetry -eq 0 ]]; then
__append_end_msg "SOC Telemetry: enabled"
else
__append_end_msg "SOC Telemetry: disabled"
if [[ ! $is_airgap ]]; then
if [[ $telemetry -eq 0 ]]; then
__append_end_msg "SOC Telemetry: enabled"
else
__append_end_msg "SOC Telemetry: disabled"
fi
fi

# ADVANCED
Expand Down

0 comments on commit 204f444

Please sign in to comment.