diff --git a/backstep-traceback b/backstep-traceback index c24d6bd7a96c86093eb991f473e4e740dc82d803..340b522ce148e3d940fe72f5e4deae6648bfee95 100755 --- a/backstep-traceback +++ b/backstep-traceback @@ -57,7 +57,7 @@ use Sys::Hostname; -our $VERSION = "1.3.1"; +our $VERSION = "1.3.2"; # Constants sub LOG_DEBUG { return 5; } @@ -210,7 +210,7 @@ When using --backup, the following options are available... =head2 --prepend-backup-filter - Append to any existing backup filter insted of overwriting it. + Prepend to any existing backup filter insted of overwriting it. =head1 ZABBIX OPTIONS @@ -723,7 +723,7 @@ Usage: $0 Default '/.backup-filter' --append-backup-filter Append to any existing backup filter insted of overwriting it. - --prepend-backup-filter Append to any existing backup filter + --prepend-backup-filter Prepend to any existing backup filter insted of overwriting it. Zabbix Options: @@ -1267,7 +1267,7 @@ sub doBackup } # Prepend backup filter data to exiting backup filter } elsif (defined($globalConfig{'prepend-backup-filter'}) && $globalConfig{'prepend-backup-filter'}) { - printLog(LOG_INFO,"RSYNC: - Appending backup filter '%s' to '%s'",$backupFilter,$backupFilterDest); + printLog(LOG_INFO,"RSYNC: - Prepending backup filter '%s' to '%s'",$backupFilter,$backupFilterDest); # Open the destination my $origBackupFilterData = ""; ## no critic (InputOutput::RequireBriefOpen)