From 08cb675755cc3b5f707dd304f9963a7159bb2a27 Mon Sep 17 00:00:00 2001 From: Philip Date: Tue, 27 Jan 2015 13:13:18 +0000 Subject: [PATCH] improve s3cmd not installed message, ie mention PATH --- duplicity-backup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/duplicity-backup.sh b/duplicity-backup.sh index 96b29b8..f43cf4a 100755 --- a/duplicity-backup.sh +++ b/duplicity-backup.sh @@ -212,7 +212,7 @@ elif [ "$ENCRYPTION" = "no" ]; then ENCRYPT="--no-encryption" fi -NO_S3CMD="WARNING: s3cmd is not installed, remote file \ +NO_S3CMD="WARNING: s3cmd no found in PATH, remote file \ size information unavailable." NO_S3CMD_CFG="WARNING: s3cmd is not configured, run 's3cmd --configure' \ in order to retrieve remote file size information. Remote file \ @@ -418,7 +418,7 @@ get_remote_file_size() if ! $S3CMD_CONF_FOUND ; then SIZE="s3cmd config not found" else - SIZE="s3cmd not installed" + SIZE="s3cmd not found in PATH" fi fi ;;