We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d4a543 commit bcac778Copy full SHA for bcac778
manifests/server/config.pp
@@ -108,8 +108,20 @@
108
ensure => present,
109
replace => false,
110
}
111
+
112
+ # The init script from the packages of the postgresql.org repository
113
+ # sources an alternate sysconfig file.
114
+ # I. e. /etc/sysconfig/pgsql/postgresql-9.3 for PostgreSQL 9.3
115
+ # Link to the sysconfig file set by this puppet module
116
+ file { "/etc/sysconfig/pgsql/postgresql-${version}":
117
+ ensure => link,
118
+ target => '/etc/sysconfig/pgsql/postgresql',
119
+ require => File[ '/etc/sysconfig/pgsql/postgresql' ],
120
+ }
121
122
123
124
125
if ($manage_pg_ident_conf == true) {
126
concat { $pg_ident_conf_path:
127
owner => $user,
0 commit comments