
Refresh-HADeviceRegistry added prompts as well as generalization using the profile.d set variables. Added profile.d template file for smoother setup Added HA Addon commands
8 lines
248 B
PowerShell
8 lines
248 B
PowerShell
[CmdletBinding(SupportsShouldProcess)]param(
|
|
[string[]]$AddOnSlug,
|
|
[switch]$NoPatternMatch
|
|
)
|
|
|
|
Get-HA_Addon 'Running' -AddOnSlug:$AddOnSlug -NoPatternMatch:$NoPatternMatch | ForEach-Object {
|
|
Invoke-HomeAssistantCli addons stop $_.slug
|
|
}
|