Skip to content
Snippets Groups Projects
Commit 9334e013 authored by Nils Olof Paulsson's avatar Nils Olof Paulsson
Browse files

typo

parent 181fe618
No related branches found
No related tags found
1 merge request!1Devel
Pipeline #105283 failed
...@@ -23,11 +23,19 @@ class omni::postgres () { ...@@ -23,11 +23,19 @@ class omni::postgres () {
db => 'omni', db => 'omni',
role => 'admin', role => 'admin',
} }
postgresql::server::pg_hba_rule { 'Allow access': postgresql::server::pg_hba_rule { 'Allow access from local':
description => "Open up PostgreSQL for access to admin",
type => 'local',
database => 'omni',
user => 'admin',
auth_method => 'md5',
}
postgresql::server::pg_hba_rule { 'Allow access from localhost':
description => "Open up PostgreSQL for access to admin", description => "Open up PostgreSQL for access to admin",
type => 'host', type => 'host',
address => '127.0.0.1/32',
database => 'omni', database => 'omni',
user => 'admin', user => 'admin',
auth_method => 'md5', auth_method => 'md5',
} }
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment