aboutsummaryrefslogtreecommitdiff
path: root/modules/private/monitoring/plugins/check_ftp_database
blob: f9cf5793225e20ba4b30183ac1d2cb03a6a0e4aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env bash

OUT=$(echo "ls" | lftp -u test_ftp,test_ftp eldiron.immae.eu | grep it_works | wc -l)

if [ "$OUT" -eq 1 ]; then
  echo "ftp connection OK - access to ftp is working | ftp=1;;;;"
  exit 0
else
  echo "ftp connection CRITICAL - no access to ftp | ftp=0;;;;"
  exit 2
fi