mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 07:10:15 -05:00
8 lines
230 B
PowerShell
8 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);
|
||
|
|
}
|