mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Allow parameters to be passed for uninstall (required by some packages) (#2269)
This commit is contained in:
parent
c56da672d1
commit
efb29d6436
1 changed files with 5 additions and 0 deletions
|
@ -288,6 +288,11 @@ Function Choco-Uninstall
|
|||
$cmd += " -force"
|
||||
}
|
||||
|
||||
if ($packageparams)
|
||||
{
|
||||
$cmd += " -params '$packageparams'"
|
||||
}
|
||||
|
||||
$results = invoke-expression $cmd
|
||||
|
||||
if ($LastExitCode -notin $successexitcodes)
|
||||
|
|
Loading…
Reference in a new issue