Add note that old backups have to be cleaned up manually

This commit is contained in:
Girish Ramakrishnan
2020-02-07 12:50:59 -08:00
parent 62562f051c
commit a1c487b29d

View File

@@ -23,7 +23,7 @@
<h4 class="modal-title">Configure Backup Storage</h4>
</div>
<div class="modal-body">
<p>Cloudron makes a complete backup of your system every day.</p>
<p>Cloudron makes a complete backup of your system based on this configuration.</p>
<form name="configureBackupForm" role="form" novalidate ng-submit="configureBackup.submit()" autocomplete="off">
<fieldset>
@@ -145,10 +145,13 @@
<div class="form-group" ng-class="{ 'has-error': configureBackup.error.key }" ng-show="configureBackup.provider !== 'noop'">
<label class="control-label" for="inputConfigureBackupKey">Encryption key (optional) <sup><a ng-href="{{ config.webServerOrigin }}/documentation/backups/#encryption" class="help" target="_blank"><i class="fa fa-question-circle"></i></a></sup></label>
<p class="small text-info">Save this passphrase in a safe place. Backups cannot be decrypted without the passphrase</p>
<p class="small">Save this passphrase in a safe place. Backups cannot be decrypted without the passphrase</p>
<input type="text" class="form-control" ng-model="configureBackup.key" id="inputConfigureBackupKey" name="prefix" ng-disabled="configureBackup.busy" placeholder="Passphrase used to encrypt the backups">
</div>
<p class="text-info">
If you change the location of backups, Cloudron will not delete backups stored in the previous location. They have to be removed manually.
</p>
<input class="ng-hide" type="submit" ng-disabled="configureBackupForm.$invalid"/>
</fieldset>
</form>