Icinga / Icinga/icinga-powershell-framework
Can't use private IcingaRepository
@LordHepipud is already working on this.
Since Feb 10, 2022.
- Dominant language
- PowerShell
- Stars
- 87
- Forks
- 34
- PR merge metrics
- No merged PRs in 30d
Description
Hello,
When we try to install icinga for windows with a private repo of Icinga, the installation still try to use the default repository.
Can you help us with this process ?
Expected Behavior
Install Icinga with our private repository.
Following the documentation of Automated installation with InstallCommand and own IcingaRepository
Current Behavior
When trying to install Icinga for Windows in offline mode, it still try to download from the internet.
Steps to Reproduce (for bugs)
- Create a sync repository on a windows server with ;
Sync-IcingaRepository `
-Name 'Icinga Stable Local' `
-Path 'E:\Repo_icinga\icinga_stable' `
-RemotePath '\\WINSERVER\Repo_icinga\icinga_stable' `
-Source 'https://packages.icinga.com/IcingaForWindows/stable'
And make sure it's enable:
Enable-IcingaRepository -Name 'Icinga Stable Local'
-
Set the permission of the shared folder Repo_icinga
-
Create a powershell script based on the one on the installation page:
[Net.ServicePointManager]::SecurityProtocol = 'tls12, tls11';
$ProgressPreference = 'SilentlyContinue';
[string]$ScriptFile = 'C:\Users\Public\IcingaForWindows.ps1';
Invoke-WebRequest `
-UseBasicParsing `
-Uri '\\WINSERVER\Repo_icinga\IcingaForWindows.ps1' `
-OutFile $ScriptFile;
& $ScriptFile `
-ModuleDirectory 'C:\Program Files\WindowsPowerShell\Modules\' `
-InstallCommand '{"IfW-DirectorSelfServiceKey":{"Values":["AAAAABBBBCCCCCDDDDD"]},"IfW-DirectorUrl":{"Values":["http://ICINGA_SERVER/icingaweb2/director"]}}' `
-IcingaRepository '\\WINSERVER\Repo_icinga\icinga_stable\ifw.repo.json';
- On another server we execute the script.
It download and launch correctly the IcingaForWindows.ps1.
But then try to download on the internet:

Context
We have a bunch of server without internet connection and therefore can't be added to our monitoring system.
Thank you for your help.
Your Environment
- PowerShell Version used : 5.1
- Operating System and version: Windows server 2016
- Latest version of Icinga as of today (10/02)
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.