]>
Commit | Line | Data |
---|---|---|
e820134d IB |
1 | #!/usr/bin/env bash |
2 | ||
3 | OUT=$(echo "ls" | lftp -u test_ftp,test_ftp eldiron.immae.eu | grep it_works | wc -l) | |
4 | ||
5 | if [ "$OUT" -eq 1 ]; then | |
6 | echo "ftp connection OK - access to ftp is working" | |
7 | exit 0 | |
8 | else | |
9 | echo "ftp connection CRITICAL - no access to ftp" | |
10 | exit 2 | |
11 | fi |