update ftp command check

This commit is contained in:
Teddysun 2016-12-20 21:59:02 +09:00
parent 848c72942a
commit c080870f45

View File

@ -99,7 +99,7 @@ log() {
# Check for list of mandatory binaries
check_commands() {
# This section checks for all of the binaries used in the backup
BINARIES=( cat cd du date dirname echo openssl mysql mysqldump pwd rm tar ftp )
BINARIES=( cat cd du date dirname echo openssl mysql mysqldump pwd rm tar )
# Iterate over the list of binaries, and if one isn't found, abort
for BINARY in "${BINARIES[@]}"; do
@ -114,6 +114,14 @@ check_commands() {
if [ "$(command -v "gdrive")" ]; then
GDRIVE_COMMAND=true
fi
# check ftp command
if ${FTP_FLG}; then
if [ ! "$(command -v "ftp")" ]; then
log "ftp is not installed. Install it and try again"
exit 1
fi
fi
}
calculate_size() {