diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c1ae3f57a33..94e88051128 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -37,6 +37,10 @@ jobs: $psqldir = (([System.IO.Path]::GetDirectoryName([System.IO.Path]::GetDirectoryName($psqlPath)))) $cfgdir = Join-Path -Path $psqldir -ChildPath data $cfgpath = Join-Path -Path $cfgdir -ChildPath "pg_hba.conf" + Write-Output "Getting network info" + Get-NetIPAddress | Format-Table + Write-Output "Existing pg_hba.conf:" + type $cfgpath Write-Output "Writing to pg_hba config at: $cfgpath" Set-Content "$cfgpath" "host all all ::1/128 trust" Add-Content "$cfgpath" "host all all 127.0.0.1/32 trust"