File tree 3 files changed +9
-0
lines changed
3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,10 @@ deploy:
40
40
* Force agent to run a partial software inventory after the deploy task is done
41
41
if this has been set as a requirement in any job sent by the server
42
42
43
+ toolbox:
44
+ * fix #532: Make libssh2 use the right place when looking for known_hosts file
45
+ on windows
46
+
43
47
packaging:
44
48
* Update MacOSX to use perl 5.38.2, OpenSSL 3.2.1 and zlib 1.3.1
45
49
* Update Windows MSI installer to use StrawBerry Perl 5.38.2
Original file line number Diff line number Diff line change @@ -223,8 +223,10 @@ sub _submit_add {
223
223
}
224
224
}
225
225
226
+ my $agent = $self -> {toolbox }-> {server }-> {agent };
226
227
my $remote = GLPI::Agent::Task::RemoteInventory::Remote-> new(
227
228
url => $form -> {' input/url' },
229
+ config => $agent -> {config },
228
230
logger => $self -> {logger }
229
231
);
230
232
@@ -260,8 +262,10 @@ sub _submit_update {
260
262
$self -> need_save($target );
261
263
my $expiration = $remote -> expiration();
262
264
265
+ my $agent = $self -> {toolbox }-> {server }-> {agent };
263
266
$remote = GLPI::Agent::Task::RemoteInventory::Remote-> new(
264
267
url => $form -> {' input/url' },
268
+ config => $agent -> {config },
265
269
logger => $self -> {logger }
266
270
);
267
271
Original file line number Diff line number Diff line change @@ -1005,6 +1005,7 @@ sub _scanAddressByRemote {
1005
1005
$url -> scheme($credential -> {TYPE });
1006
1006
1007
1007
my $remote = GLPI::Agent::Task::RemoteInventory::Remote-> new(
1008
+ config => $self -> {config },
1008
1009
logger => $self -> {logger },
1009
1010
url => $url -> as_string(),
1010
1011
timeout => $params -> {timeout },
You can’t perform that action at this time.
0 commit comments