Hi,
I wanted to add older files system snapshots to pbs using
but I get:
The "offending" code seems to be in proxmox-backup.git/pbs-api-types/src/datastore.rs
Can't this minimum be lowered? Or is there another way to add old backups?
I wanted to add older files system snapshots to pbs using
Bash:
proxmox-backup-client backup Documents.pxar:Documents/2018.07.27/ --repository 192.168.1.222:store1 --backup-time `date -d 2018-07-27 +%s -u`
but I get:
Bash:
Error: parameter verification errors
parameter 'backup-time': value must have a minimum value of 1547797308 (got 1532649600)
The "offending" code seems to be in proxmox-backup.git/pbs-api-types/src/datastore.rs
Code:
pub const BACKUP_TIME_SCHEMA: Schema = IntegerSchema::new("Backup time (Unix epoch.)")
.minimum(1_547_797_308)
.schema();
Can't this minimum be lowered? Or is there another way to add old backups?