Fix tab alignments

This commit is contained in:
Markus Kraus
2020-05-30 21:02:25 +02:00
parent d2544c9418
commit b0dcb843aa

View File

@@ -114,10 +114,10 @@ function Set-VMHostSecureNTP {
"Get NTP Client Firewall ..." "Get NTP Client Firewall ..."
try { try {
$FirewallGet = $esxcli.network.firewall.get.Invoke() $FirewallGet = $esxcli.network.firewall.get.Invoke()
} }
catch [System.Exception] { catch [System.Exception] {
Write-Warning "Error during Rule List. See latest errors..." Write-Warning "Error during Rule List. See latest errors..."
} }
"`tLoded: $($FirewallGet.Loaded)" "`tLoded: $($FirewallGet.Loaded)"
"`tEnabled: $($FirewallGet.Enabled)" "`tEnabled: $($FirewallGet.Enabled)"
"`tDefaultAction: $($FirewallGet.DefaultAction)" "`tDefaultAction: $($FirewallGet.DefaultAction)"
@@ -127,10 +127,10 @@ function Set-VMHostSecureNTP {
$esxcliargs.rulesetid = "ntpClient" $esxcliargs.rulesetid = "ntpClient"
try { try {
$FirewallRuleList = $esxcli.network.firewall.ruleset.list.Invoke($esxcliargs) $FirewallRuleList = $esxcli.network.firewall.ruleset.list.Invoke($esxcliargs)
} }
catch [System.Exception] { catch [System.Exception] {
Write-Warning "Error during Rule List. See latest errors..." Write-Warning "Error during Rule List. See latest errors..."
} }
"`tEnabled: $($FirewallRuleList.Enabled)" "`tEnabled: $($FirewallRuleList.Enabled)"
## Set NTP Client Firewall Rule ## Set NTP Client Firewall Rule
"Set NTP Client Firewall Rule ..." "Set NTP Client Firewall Rule ..."
@@ -140,24 +140,24 @@ function Set-VMHostSecureNTP {
$esxcliargs.rulesetid = "ntpClient" $esxcliargs.rulesetid = "ntpClient"
try { try {
$esxcli.network.firewall.ruleset.set.Invoke($esxcliargs) $esxcli.network.firewall.ruleset.set.Invoke($esxcliargs)
} }
catch [System.Exception] { catch [System.Exception] {
$ErrorMessage = $_.Exception.Message $ErrorMessage = $_.Exception.Message
if ($ErrorMessage -ne "Already use allowed ip list") { if ($ErrorMessage -ne "Already use allowed ip list") {
Write-Warning "Error during Rule Set. See latest errors..." Write-Warning "Error during Rule Set. See latest errors..."
}
} }
}
"Get NTP Client Firewall Rule AllowedIP ..." "Get NTP Client Firewall Rule AllowedIP ..."
$esxcliargs = $esxcli.network.firewall.ruleset.allowedip.list.CreateArgs() $esxcliargs = $esxcli.network.firewall.ruleset.allowedip.list.CreateArgs()
$esxcliargs.rulesetid = "ntpClient" $esxcliargs.rulesetid = "ntpClient"
try { try {
$FirewallRuleAllowedIPList = $esxcli.network.firewall.ruleset.allowedip.list.Invoke($esxcliargs) $FirewallRuleAllowedIPList = $esxcli.network.firewall.ruleset.allowedip.list.Invoke($esxcliargs)
} }
catch [System.Exception] { catch [System.Exception] {
Write-Warning "Error during Rule List. See latest errors..." Write-Warning "Error during Rule List. See latest errors..."
} }
"`tAllowed IP Addresses: $($FirewallRuleAllowedIPList.AllowedIPAddresses -join ", ")" "`tAllowed IP Addresses: $($FirewallRuleAllowedIPList.AllowedIPAddresses -join ", ")"
## Remove Existing IP from firewall rule ## Remove Existing IP from firewall rule
"Remove Existing IP from firewall rule ..." "Remove Existing IP from firewall rule ..."
@@ -168,10 +168,10 @@ function Set-VMHostSecureNTP {
$esxcliargs.ipaddress = $IP $esxcliargs.ipaddress = $IP
try { try {
$esxcli.network.firewall.ruleset.allowedip.remove.Invoke($esxcliargs) $esxcli.network.firewall.ruleset.allowedip.remove.Invoke($esxcliargs)
} }
catch [System.Exception] { catch [System.Exception] {
Write-Warning "Error during AllowedIP remove. See latest errors..." Write-Warning "Error during AllowedIP remove. See latest errors..."
} }
} }
} }
@@ -197,10 +197,10 @@ function Set-VMHostSecureNTP {
$esxcliargs.rulesetid = "ntpClient" $esxcliargs.rulesetid = "ntpClient"
try { try {
$FirewallRuleAllowedIPList = $esxcli.network.firewall.ruleset.allowedip.list.Invoke($esxcliargs) $FirewallRuleAllowedIPList = $esxcli.network.firewall.ruleset.allowedip.list.Invoke($esxcliargs)
} }
catch [System.Exception] { catch [System.Exception] {
Write-Warning "Error during Rule List. See latest errors..." Write-Warning "Error during Rule List. See latest errors..."
} }
"`tNew Allowed IP Addresses: $($FirewallRuleAllowedIPList.AllowedIPAddresses -join ", ")" "`tNew Allowed IP Addresses: $($FirewallRuleAllowedIPList.AllowedIPAddresses -join ", ")"