mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 07:10:15 -05:00
Updates Framework Kickstarter Script
This commit is contained in:
parent
8ff8a58733
commit
95e2936866
1 changed files with 4 additions and 1 deletions
|
|
@ -12,7 +12,10 @@ Getting Started
|
||||||
[Net.ServicePointManager]::SecurityProtocol = "tls12, tls11";
|
[Net.ServicePointManager]::SecurityProtocol = "tls12, tls11";
|
||||||
$ProgressPreference = "SilentlyContinue";
|
$ProgressPreference = "SilentlyContinue";
|
||||||
|
|
||||||
$Script = (Invoke-WebRequest -UseBasicParsing -Uri 'https://raw.githubusercontent.com/LordHepipud/icinga-framework-kickstart/master/script/icinga-framework-kickstart.ps1').Content;
|
$global:IcingaFrameworkKickstartSource = 'https://raw.githubusercontent.com/LordHepipud/icinga-framework-kickstart/master/script/icinga-framework-kickstart.ps1';
|
||||||
|
|
||||||
|
$Script = (Invoke-WebRequest -UseBasicParsing -Uri $global:IcingaFrameworkKickstartSource).Content;
|
||||||
|
$Script += "`r`n`r`n Start-IcingaFrameworkWizard;";
|
||||||
|
|
||||||
Invoke-Command -ScriptBlock ([Scriptblock]::Create($Script));
|
Invoke-Command -ScriptBlock ([Scriptblock]::Create($Script));
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue