Hello,
Is it possible to put the date in the backup file?
The cpbackup run every day and send backups to a remote FTP server, with the name "user.tar.gz", it is possible change the name to "user.YYYY.MM.DD.tar.gz"?
I believe that the code responsible for this in cpbackup is:
any suggestions?
Is it possible to put the date in the backup file?
The cpbackup run every day and send backups to a remote FTP server, with the name "user.tar.gz", it is possible change the name to "user.YYYY.MM.DD.tar.gz"?
I believe that the code responsible for this in cpbackup is:
Code:
(...)
my $target_file = ( $CONF{'COMPRESSACCTS'} eq 'no' ? "$user.tar" : "$user.tar.gz" );
(...)