remove the "-" because systemd makes it as \x2d when escaping
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user