mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-20 23:00:35 -05:00
7 lines
230 B
PowerShell
7 lines
230 B
PowerShell
function Set-IcingaUserPermissions()
|
|
{
|
|
Set-IcingaAgentServicePermission | Out-Null;
|
|
Set-IcingaAcl "$Env:ProgramData\icinga2\etc";
|
|
Set-IcingaAcl "$Env:ProgramData\icinga2\var";
|
|
Set-IcingaAcl (Get-IcingaCacheDir);
|
|
}
|