Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
egg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
liu-puppet-modules
egg
Commits
6f11c05b
Commit
6f11c05b
authored
1 year ago
by
Nils Olof Paulsson
Browse files
Options
Downloads
Patches
Plain Diff
allowallonlocalhost
parent
ee5325f9
No related branches found
No related tags found
2 merge requests
!2
Test
,
!1
Devel
Pipeline
#119437
passed
1 year ago
Stage: puppet
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
manifests/postgres.pp
+4
-2
4 additions, 2 deletions
manifests/postgres.pp
with
4 additions
and
2 deletions
manifests/postgres.pp
+
4
−
2
View file @
6f11c05b
...
@@ -3,7 +3,9 @@ class egg::postgres () {
...
@@ -3,7 +3,9 @@ class egg::postgres () {
package
{
[
'postgresql'
,
'postgresql-contrib'
]:
package
{
[
'postgresql'
,
'postgresql-contrib'
]:
ensure
=>
'installed'
,
ensure
=>
'installed'
,
}
}
class
{
'postgresql::server'
:
}
class
{
'postgresql::server'
:
pg_hba_conf_defaults
=>
false
,
}
postgresql::server::db
{
'nta-digital_nodejs'
:
postgresql::server::db
{
'nta-digital_nodejs'
:
user
=>
'nilpa76'
,
user
=>
'nilpa76'
,
...
@@ -14,7 +16,7 @@ class egg::postgres () {
...
@@ -14,7 +16,7 @@ class egg::postgres () {
postgresql::server::pg_hba_rule
{
'allow local access as postgres user'
:
postgresql::server::pg_hba_rule
{
'allow local access as postgres user'
:
type
=>
'local'
,
type
=>
'local'
,
database
=>
'all'
,
database
=>
'all'
,
user
=>
'
postgres
'
,
user
=>
'
all
'
,
auth_method
=>
'trust'
,
auth_method
=>
'trust'
,
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment