diff --git a/images/linux/scripts/SoftwareReport/SoftwareReport.Generator.ps1 b/images/linux/scripts/SoftwareReport/SoftwareReport.Generator.ps1 index f2f28588f..7a7fad07b 100644 --- a/images/linux/scripts/SoftwareReport/SoftwareReport.Generator.ps1 +++ b/images/linux/scripts/SoftwareReport/SoftwareReport.Generator.ps1 @@ -273,9 +273,7 @@ $markdown += New-MDList -Style Unordered -Lines ( $databaseLists | Sort-Object ) $markdown += Build-PostgreSqlSection $markdown += Build-MySQLSection -if ((Test-IsUbuntu18) -or (Test-IsUbuntu20)) { - $markdown += Build-MSSQLToolsSection -} +$markdown += Build-MSSQLToolsSection $markdown += New-MDHeader "Cached Tools" -Level 3 $markdown += Build-CachedToolsSection diff --git a/images/linux/scripts/tests/Tools.Tests.ps1 b/images/linux/scripts/tests/Tools.Tests.ps1 index 13c8d95f9..97a364b14 100644 --- a/images/linux/scripts/tests/Tools.Tests.ps1 +++ b/images/linux/scripts/tests/Tools.Tests.ps1 @@ -182,7 +182,7 @@ Describe "Mono" { } } -Describe "MSSQLCommandLineTools" -Skip:(Test-IsUbuntu22) { +Describe "MSSQLCommandLineTools" { It "sqlcmd" { "sqlcmd -?" | Should -ReturnZeroExitCode } diff --git a/images/linux/ubuntu2204.pkr.hcl b/images/linux/ubuntu2204.pkr.hcl index f48257ca5..bf957f6c4 100644 --- a/images/linux/ubuntu2204.pkr.hcl +++ b/images/linux/ubuntu2204.pkr.hcl @@ -303,6 +303,7 @@ build { "${path.root}/scripts/installers/mono.sh", "${path.root}/scripts/installers/kotlin.sh", "${path.root}/scripts/installers/mysql.sh", + "${path.root}/scripts/installers/mssql-cmd-tools.sh", "${path.root}/scripts/installers/sqlpackage.sh", "${path.root}/scripts/installers/nginx.sh", "${path.root}/scripts/installers/nvm.sh",