We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3c1642f + 3153822 commit 2914965Copy full SHA for 2914965
usr/libexec/helper-scripts/check-network-access
@@ -0,0 +1,13 @@
1
+#!/bin/bash
2
+
3
+## Copyright (C) 2025 - 2025 ENCRYPTED SUPPORT LLC <adrelanos@whonix.org>
4
+## See the file COPYING for copying conditions.
5
6
+network_ip_data="$(
7
+ ip -o addr show scope global \
8
+ | awk '{print $4}'
9
+)" || true
10
+if [ -n "${network_ip_data}" ]; then
11
+ exit 0
12
+fi
13
+exit 1
0 commit comments