Skip to content

Commit cda3ac7

Browse files
committed
fix: fix libssh2 configuration when used from ToolBox on windows
Closes #532
1 parent ea45347 commit cda3ac7

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

Changes

+4
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ deploy:
4040
* Force agent to run a partial software inventory after the deploy task is done
4141
if this has been set as a requirement in any job sent by the server
4242

43+
toolbox:
44+
* fix #532: Make libssh2 use the right place when looking for known_hosts file
45+
on windows
46+
4347
packaging:
4448
* Update MacOSX to use perl 5.38.2, OpenSSL 3.2.1 and zlib 1.3.1
4549
* Update Windows MSI installer to use StrawBerry Perl 5.38.2

lib/GLPI/Agent/HTTP/Server/ToolBox/Remotes.pm

+4
Original file line numberDiff line numberDiff line change
@@ -223,8 +223,10 @@ sub _submit_add {
223223
}
224224
}
225225

226+
my $agent = $self->{toolbox}->{server}->{agent};
226227
my $remote = GLPI::Agent::Task::RemoteInventory::Remote->new(
227228
url => $form->{'input/url'},
229+
config => $agent->{config},
228230
logger => $self->{logger}
229231
);
230232

@@ -260,8 +262,10 @@ sub _submit_update {
260262
$self->need_save($target);
261263
my $expiration = $remote->expiration();
262264

265+
my $agent = $self->{toolbox}->{server}->{agent};
263266
$remote = GLPI::Agent::Task::RemoteInventory::Remote->new(
264267
url => $form->{'input/url'},
268+
config => $agent->{config},
265269
logger => $self->{logger}
266270
);
267271

lib/GLPI/Agent/Task/NetDiscovery.pm

+1
Original file line numberDiff line numberDiff line change
@@ -1005,6 +1005,7 @@ sub _scanAddressByRemote {
10051005
$url->scheme($credential->{TYPE});
10061006

10071007
my $remote = GLPI::Agent::Task::RemoteInventory::Remote->new(
1008+
config => $self->{config},
10081009
logger => $self->{logger},
10091010
url => $url->as_string(),
10101011
timeout => $params->{timeout},

0 commit comments

Comments
 (0)