PowerShell_Scripts/ansible/Update-ViaAnsible.ps1
lksz 9f0d669b4c Ansible Output improvements
Using AnsibleOutput type, default type data will output 4 last lines,
while all lines would be available if needed.
2021-05-09 23:45:23 -04:00

7 lines
213 B
PowerShell

[CmdletBinding()]param(
[string[]]$Remotes = 'All',
[switch]$RawOutput,
[switch]$PassThruOnly
)
Invoke-ViaAnsible -Command "Update-OSz -Mode Auto" -Remotes:$($Remotes.ToLower()) -RawOutput:$RawOutput