Change the defaults for 'Backup Now'

shantanu

Renowned Member
Mar 30, 2012
112
11
83
Hi,
I am using PVE 5.3 (with updates).
Is it possible to specify/change the defaults for the 'Backup Now' option?

The default is always 'local' for 'Storage' and 'LZO' compression.
I would like to have 'GZIP' as my default 'Compression' and possibly a different storage location.

upload_2018-12-9_12-1-51.png

Regards,
Shantanu
 
Is it possible to specify/change the defaults for the 'Backup Now' option?
no this is currently not possible for the gui, but you could open an enhancement request on our bugtracker [1], no promises though as to if/when we implement such a thing

1: https://bugzilla.proxmox.com/
 
  • Like
Reactions: shantanu
To change the default Backup mode for "Backup Now" from Snapshot to Stop:

Code:
sed -i 's/value: 'snapshot',/value: 'stop',/' /usr/share/pve-manager/js/pvemanagerlib.js

I think an ideal way for this to function instead were if it simply remembered the last setting you used, but it dont sound like this is a high priority item so I just edited the file.
 
Last edited:
To change the default Backup mode for "Backup Now" from Snapshot to Stop:

Code:
sed -i 's/value: 'snapshot',/value: 'stop',/' /usr/share/pve-manager/js/pvemanagerlib.js

I think an ideal way for this to function instead were if it simply remembered the last setting you used, but it dont sound like this is a high priority item so I just edited the file.
I tried this and it still used snapshot as default...