remove the "-" because systemd makes it as \x2d when escaping

This commit is contained in:
Girish Ramakrishnan
2021-06-22 09:46:09 -07:00
parent 7bc76f2f34
commit a7783fdb0d

View File

@@ -610,7 +610,7 @@ angular.module('Application').controller('BackupsController', ['$scope', '$locat
backupConfig.mountOptions = {};
if (backupConfig.provider === 'cifs' || backupConfig.provider === 'sshfs' || backupConfig.provider === 'nfs') {
backupConfig.mountPoint = '/mnt/cloudron-backups'; // harcoded for ease of use
backupConfig.mountPoint = '/mnt/cloudronbackups'; // harcoded for ease of use
backupConfig.mountOptions.host = $scope.configureBackup.mountOptions.host;
backupConfig.mountOptions.remoteDir = $scope.configureBackup.mountOptions.remoteDir;
@@ -623,7 +623,7 @@ angular.module('Application').controller('BackupsController', ['$scope', '$locat
backupConfig.mountOptions.privateKey = $scope.configureBackup.mountOptions.privateKey;
}
} else if (backupConfig.provider === 'ext4') {
backupConfig.mountPoint = '/mnt/cloudron-backups'; // harcoded for ease of use
backupConfig.mountPoint = '/mnt/cloudronbackups'; // harcoded for ease of use
backupConfig.mountOptions.diskPath = $scope.configureBackup.mountOptions.diskPath;
} else if (backupConfig.provider === 'mountpoint') {
backupConfig.mountPoint = $scope.configureBackup.mountPoint;