summaryrefslogtreecommitdiff
path: root/bareos/check-if-bareos-backup-is-running
diff options
context:
space:
mode:
Diffstat (limited to 'bareos/check-if-bareos-backup-is-running')
-rwxr-xr-xbareos/check-if-bareos-backup-is-running5
1 files changed, 4 insertions, 1 deletions
diff --git a/bareos/check-if-bareos-backup-is-running b/bareos/check-if-bareos-backup-is-running
index bb513e65..bc3d2e10 100755
--- a/bareos/check-if-bareos-backup-is-running
+++ b/bareos/check-if-bareos-backup-is-running
@@ -6,7 +6,10 @@ if [ $# -ne 0 ]; then
fi
if cat /proc/net/tcp* \
-| awk '{print $3}' \
+| awk '{print $2 " " $3}' \
+| grep -vw '\(000000000000000000000000\)\?00000000:0000' \
+| tr ' ' '\n' \
+| grep -F : \
| cut -d: -f2 \
| grep -qxiF '238F'; then
>&2 echo 'bareos-fd is connected to bareos-sd'