k9fr4n

Results 11 comments of k9fr4n

a workaround is to use the lifecycle to ignore change about initial_password ` lifecycle { ignore_changes = [initial_password] } `

just create a powershell script like 'check_default_arg_value.ps1' with this content: ``` [CmdletBinding()] param( [Parameter(Mandatory=$false)]$Arg1, [Parameter(Mandatory=$false)]$Arg2 ) Write-Host $Arg1 Write-Host $Arg2 ``` declare the script in snclient.ini like: ``` check_default_arg_value =...

Hi I have the same behavior on Windows 2016: before service restart: ![snclient_before](https://github.com/ConSol-Monitoring/snclient/assets/132520562/2f6a9e8e-ed8e-4766-bcf9-2ddad70c240e) after: ![snclient_after](https://github.com/ConSol-Monitoring/snclient/assets/132520562/2be10fe0-5103-435d-a61d-faaa5ffa1b43)

the problem seems not to be resolved in the release 0.23 ![snclient_before](https://github.com/ConSol-Monitoring/snclient/assets/132520562/01951787-1da6-494f-b337-ddf22814fc0d) ![snclient_after](https://github.com/ConSol-Monitoring/snclient/assets/132520562/aea79b8e-e952-4e45-93fe-eb664286901a)

> already done, that's the 0.24. where we can find the 0.24 release ?

hello I confirm that the memory leak is still present I saw it on Windows Server 2016 and 2019 I have a suspicion about "wrapped scripts"... before: ![memory_snclient1](https://github.com/ConSol-Monitoring/snclient/assets/132520562/6b457b7a-2d54-45c9-b918-a7c3de1dd659) after: ![memory_snclient2](https://github.com/ConSol-Monitoring/snclient/assets/132520562/b0681dad-3910-4a40-a1d7-1eb244e18bd6)

Hi memory leak is still present in version 0.25 I notice that the memory issue seems not to be present when using just the builtin check command. Snclient's memory increases...

yes, mainly powershell scripts

after analysis, I see that the memory leak is located on the default checks I use the check_tasksched via an alias and each time this check is used, the memory...

after reflection, I wanted to talk about the "cn" attribute like: ` resource "ad_user" "toto" { principal_name = "[email protected]" sam_account_name = "toto" email_address = "[email protected]" given_name = "Toto" surname =...