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-running7
1 files changed, 4 insertions, 3 deletions
diff --git a/bareos/check-if-bareos-backup-is-running b/bareos/check-if-bareos-backup-is-running
index ea7cc3aff..bb513e653 100755
--- a/bareos/check-if-bareos-backup-is-running
+++ b/bareos/check-if-bareos-backup-is-running
@@ -5,11 +5,12 @@ if [ $# -ne 0 ]; then
exit 2
fi
-if awk '{print $3}' /proc/net/tcp \
+if cat /proc/net/tcp* \
+| awk '{print $3}' \
| cut -d: -f2 \
| grep -qxiF '238F'; then
- >&2 echo 'bareos-fd is not connected to bareos-sd'
-else
>&2 echo 'bareos-fd is connected to bareos-sd'
exit 1
+else
+ >&2 echo 'bareos-fd is not connected to bareos-sd'
fi