icinga-powershell-framework/lib/core/jea/Remove-IcingaFrameworkDependencyFile.psm1

11 lines
284 B
PowerShell
Raw Normal View History

2021-08-06 12:12:27 -04:00
function Remove-IcingaFrameworkDependencyFile()
{
$DependencyFile = Join-Path -Path (Get-IcingaCacheDir) -ChildPath 'framework_dependencies.json';
if (-Not (Test-Path $DependencyFile)) {
return;
}
Remove-ItemSecure -Path $DependencyFile -Force | Out-Null;
}