mirror of
https://github.com/laurent22/rsync-time-backup
synced 2025-03-02 13:57:13 +00:00
Fixed variable names
This commit is contained in:
parent
7383c50134
commit
051733df1e
1 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ fn_display_usage() {
|
|||
echo " not be managed by the script - in particular they will not be"
|
||||
echo " automatically deleted."
|
||||
echo " Default: $LOG_DIR"
|
||||
echo " --strategy Set the expiration strategy. Default: \"365:30 30:7 1:1\" means after one"
|
||||
echo " --strategy Set the expiration strategy. Default: \"1:1 30:7 365:30\" means after one"
|
||||
echo " day, keep one backup per day. After 30 days, keep one backup every 7 days."
|
||||
echo " After 365 days keep one backup every 30 days."
|
||||
echo ""
|
||||
|
@ -240,7 +240,7 @@ while :; do
|
|||
;;
|
||||
--strategy)
|
||||
shift
|
||||
STRATEGY="$1"
|
||||
EXPIRATION_STRATEGY="$1"
|
||||
;;
|
||||
--log-dir)
|
||||
shift
|
||||
|
|
Loading…
Add table
Reference in a new issue