From 1572c20af1d8710d09d22f3a9cbeb5623a1436fc Mon Sep 17 00:00:00 2001 From: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com> Date: Wed, 31 Mar 2021 15:50:39 +0300 Subject: [PATCH] [Ubuntu] Move Az modules to the PowerShell Tools section (#3067) * Move az section * Add new line between pwsh and az modules --- .../scripts/SoftwareReport/SoftwareReport.Generator.ps1 | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/images/linux/scripts/SoftwareReport/SoftwareReport.Generator.ps1 b/images/linux/scripts/SoftwareReport/SoftwareReport.Generator.ps1 index 9d68370c..c607cd73 100644 --- a/images/linux/scripts/SoftwareReport/SoftwareReport.Generator.ps1 +++ b/images/linux/scripts/SoftwareReport/SoftwareReport.Generator.ps1 @@ -242,11 +242,6 @@ $markdown += New-MDList -Style Unordered -Lines @( (Get-DotNetCoreSdkVersions) ) -$markdown += New-MDHeader "Az Module" -Level 3 -$markdown += New-MDList -Style Unordered -Lines @( - (Get-AzModuleVersions) -) - $markdown += New-MDHeader "Databases" -Level 3 $markdown += New-MDList -Style Unordered -Lines (@( (Get-PostgreSqlVersion), @@ -271,6 +266,10 @@ $markdown += New-MDList -Lines (Get-PowershellVersion) -Style Unordered $markdown += New-MDHeader "PowerShell Modules" -Level 4 $markdown += Get-PowerShellModules | New-MDTable $markdown += New-MDNewLine +$markdown += New-MDHeader "Az PowerShell Modules" -Level 4 +$markdown += New-MDList -Style Unordered -Lines @( + (Get-AzModuleVersions) +) $markdown += Build-WebServersSection