You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
flag.StringVar(&config.ConfigFile, "config_file", "", "Path to config file (default is different for each backup tools)")
38
40
flag.StringVar(&config.BackupStorage, "backup_storage", "", "When uploading backups to storage, the user should pass the Postgres data directory as an argument (default: $PGDATA)")
39
41
flag.StringVar(&config.CronTime, "backup_cron", "0 2 * * *", "How often you should create your backup. Format crontab --backup_cron \"* * * * *\" (default: \"0 2 * * *\" At 02:00)")
40
-
flag.StringVar(&config.DeleteRetain, "delete_retain", "", "when set keep 5(or) full backups and all deltas of them (default: not set. example 5)")
42
+
flag.StringVar(&config.DeleteRetain, "delete_retain", "", "when set keep 5(or) full backups and all deltas of them (default: not set. example 5 int type)")
41
43
flag.StringVar(&config.DeleteCronTime, "delete_cron", "0 3* * 6", "How often you should retain your backups (default: \"0 3* * 6\" At 03:00 on Saturday)")
0 commit comments