Skip to content

Commit 8f7bfc7

Browse files
leefine02leefine02
authored andcommitted
1 parent 88fb901 commit 8f7bfc7

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
v3.0.0
22
- Added support for post quantum MLD-SA certificates for store types RFPEM, RFJKS, RFPkcs12, and RFDER
3-
- Added support for On Device Key Generation (ODKG) as well as On Orchestrator Key Generation (OOKG)
4-
- ODKG: uses OpenSSL to generate private key and CSR on the target device
5-
- OOKG: uses BouncyCastle libraries to generate the private key and CSR on the orchestrator
3+
- Added support for On Device Key Generation (ODKG)
64
- Removed FileTransferProtocol option from the config.json and store type custom fields. Integration will now always attempt SCP first and then SFTP (if SCP fails) for all file transfers.
75

86
v2.12.0

RemoteFile/RemoteHandlers/SSHHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public override string RunCommand(string commandText, object[] arguments, bool w
142142
command.Execute();
143143
_logger.LogDebug($"SSH Results: {displayCommand}::: {command.Result}::: {command.Error}");
144144

145-
if (!String.IsNullOrEmpty(command.Error) && !IgnoreError(command.Error))
145+
if (!String.IsNullOrEmpty(command.Error)/* && !IgnoreError(command.Error)*/)
146146
throw new ApplicationException(command.Error);
147147

148148
_logger.MethodExit(LogLevel.Debug);

integration-manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"Add": true,
2929
"Create": true,
3030
"Discovery": true,
31-
"Enrollment": false,
31+
"Enrollment": true,
3232
"Remove": true
3333
},
3434
"PasswordOptions": {
@@ -142,7 +142,7 @@
142142
"Add": true,
143143
"Create": true,
144144
"Discovery": true,
145-
"Enrollment": false,
145+
"Enrollment": true,
146146
"Remove": true
147147
},
148148
"PasswordOptions": {
@@ -301,7 +301,7 @@
301301
"Add": true,
302302
"Create": true,
303303
"Discovery": true,
304-
"Enrollment": false,
304+
"Enrollment": true,
305305
"Remove": true
306306
},
307307
"PasswordOptions": {
@@ -424,7 +424,7 @@
424424
"Add": true,
425425
"Create": true,
426426
"Discovery": true,
427-
"Enrollment": false,
427+
"Enrollment": true,
428428
"Remove": true
429429
},
430430
"PasswordOptions": {

0 commit comments

Comments
 (0)