cifs: enable seal by default
This commit is contained in:
@@ -45,7 +45,7 @@ app.controller('RestoreController', ['$scope', 'Client', function ($scope, Clien
|
|||||||
password: '',
|
password: '',
|
||||||
diskPath: '',
|
diskPath: '',
|
||||||
user: '',
|
user: '',
|
||||||
seal: false,
|
seal: true,
|
||||||
port: 22,
|
port: 22,
|
||||||
privateKey: ''
|
privateKey: ''
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -477,7 +477,7 @@ angular.module('Application').controller('BackupsController', ['$scope', '$locat
|
|||||||
username: '',
|
username: '',
|
||||||
password: '',
|
password: '',
|
||||||
diskPath: '',
|
diskPath: '',
|
||||||
seal: false,
|
seal: true,
|
||||||
user: '',
|
user: '',
|
||||||
port: 22,
|
port: 22,
|
||||||
privateKey: ''
|
privateKey: ''
|
||||||
@@ -506,7 +506,7 @@ angular.module('Application').controller('BackupsController', ['$scope', '$locat
|
|||||||
$scope.configureBackup.copyConcurrency = $scope.configureBackup.provider === 's3' ? 500 : 10;
|
$scope.configureBackup.copyConcurrency = $scope.configureBackup.provider === 's3' ? 500 : 10;
|
||||||
|
|
||||||
$scope.configureBackup.disk = null;
|
$scope.configureBackup.disk = null;
|
||||||
$scope.configureBackup.mountOptions = { host: '', remoteDir: '', username: '', password: '', diskPath: '', seal: false, user: '', port: 22, privateKey: '' };
|
$scope.configureBackup.mountOptions = { host: '', remoteDir: '', username: '', password: '', diskPath: '', seal: true, user: '', port: 22, privateKey: '' };
|
||||||
},
|
},
|
||||||
|
|
||||||
show: function () {
|
show: function () {
|
||||||
|
|||||||
@@ -95,7 +95,7 @@ angular.module('Application').controller('VolumesController', ['$scope', '$locat
|
|||||||
ext4Disk: null, // { path, type }
|
ext4Disk: null, // { path, type }
|
||||||
xfsDisk: null, // { path, type }
|
xfsDisk: null, // { path, type }
|
||||||
user: '',
|
user: '',
|
||||||
seal: false,
|
seal: true,
|
||||||
port: 22,
|
port: 22,
|
||||||
privateKey: '',
|
privateKey: '',
|
||||||
|
|
||||||
@@ -112,7 +112,7 @@ angular.module('Application').controller('VolumesController', ['$scope', '$locat
|
|||||||
$scope.volumeAdd.ext4Disk = null;
|
$scope.volumeAdd.ext4Disk = null;
|
||||||
$scope.volumeAdd.xfsDisk = null;
|
$scope.volumeAdd.xfsDisk = null;
|
||||||
$scope.volumeAdd.user = '';
|
$scope.volumeAdd.user = '';
|
||||||
$scope.volumeAdd.seal = false;
|
$scope.volumeAdd.seal = true;
|
||||||
$scope.volumeAdd.port = 22;
|
$scope.volumeAdd.port = 22;
|
||||||
$scope.volumeAdd.privateKey = '';
|
$scope.volumeAdd.privateKey = '';
|
||||||
|
|
||||||
@@ -213,7 +213,7 @@ angular.module('Application').controller('VolumesController', ['$scope', '$locat
|
|||||||
username: '',
|
username: '',
|
||||||
password: '',
|
password: '',
|
||||||
user: '',
|
user: '',
|
||||||
seal: false,
|
seal: true,
|
||||||
port: 22,
|
port: 22,
|
||||||
privateKey: '',
|
privateKey: '',
|
||||||
|
|
||||||
@@ -224,7 +224,7 @@ angular.module('Application').controller('VolumesController', ['$scope', '$locat
|
|||||||
$scope.volumeEdit.name = '';
|
$scope.volumeEdit.name = '';
|
||||||
$scope.volumeEdit.mountType = '';
|
$scope.volumeEdit.mountType = '';
|
||||||
$scope.volumeEdit.host = '';
|
$scope.volumeEdit.host = '';
|
||||||
$scope.volumeEdit.seal = '';
|
$scope.volumeEdit.seal = true;
|
||||||
$scope.volumeEdit.port = '';
|
$scope.volumeEdit.port = '';
|
||||||
$scope.volumeEdit.remoteDir = '';
|
$scope.volumeEdit.remoteDir = '';
|
||||||
$scope.volumeEdit.username = '';
|
$scope.volumeEdit.username = '';
|
||||||
|
|||||||
Reference in New Issue
Block a user