diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2018-04-26 11:52:52 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2018-04-27 11:37:43 -0400 |
commit | d4f16d50713077e69f8833df6b99d1eab0be1c33 (patch) | |
tree | f9acf7a056f6db6ba9b4e0059710276bb40d37aa /src/test/ssl/ServerSetup.pm | |
parent | a2ada08d4c0afa2d1f678ba7fb03ccc065f3a57b (diff) |
perltidy: Add option --nooutdent-long-quotes
Diffstat (limited to 'src/test/ssl/ServerSetup.pm')
-rw-r--r-- | src/test/ssl/ServerSetup.pm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/test/ssl/ServerSetup.pm b/src/test/ssl/ServerSetup.pm index 5a7ba953e28..e97d71e2578 100644 --- a/src/test/ssl/ServerSetup.pm +++ b/src/test/ssl/ServerSetup.pm @@ -91,10 +91,10 @@ sub configure_test_server_for_ssl if (defined($password)) { $node->psql('postgres', -"SET password_encryption='$password_enc'; ALTER USER ssltestuser PASSWORD '$password';" + "SET password_encryption='$password_enc'; ALTER USER ssltestuser PASSWORD '$password';" ); $node->psql('postgres', -"SET password_encryption='$password_enc'; ALTER USER anotheruser PASSWORD '$password';" + "SET password_encryption='$password_enc'; ALTER USER anotheruser PASSWORD '$password';" ); } @@ -161,14 +161,14 @@ sub configure_hba_for_ssl # When connecting to certdb, also check the client certificate. open my $hba, '>', "$pgdata/pg_hba.conf"; print $hba -"# TYPE DATABASE USER ADDRESS METHOD\n"; + "# TYPE DATABASE USER ADDRESS METHOD\n"; print $hba -"hostssl trustdb all $serverhost/32 $authmethod\n"; + "hostssl trustdb all $serverhost/32 $authmethod\n"; print $hba -"hostssl trustdb all ::1/128 $authmethod\n"; + "hostssl trustdb all ::1/128 $authmethod\n"; print $hba -"hostssl certdb all $serverhost/32 cert\n"; + "hostssl certdb all $serverhost/32 cert\n"; print $hba -"hostssl certdb all ::1/128 cert\n"; + "hostssl certdb all ::1/128 cert\n"; close $hba; } |