PowerShell_Scripts/ansible/Update-ViaAnsible.ps1

8 lines
181 B
PowerShell

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