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.
2 parents fb71907 + bcac778 commit e688274Copy full SHA for e688274
manifests/server/config.pp
@@ -112,8 +112,20 @@
112
ensure => present,
113
replace => false,
114
}
115
+
116
+ # The init script from the packages of the postgresql.org repository
117
+ # sources an alternate sysconfig file.
118
+ # I. e. /etc/sysconfig/pgsql/postgresql-9.3 for PostgreSQL 9.3
119
+ # Link to the sysconfig file set by this puppet module
120
+ file { "/etc/sysconfig/pgsql/postgresql-${version}":
121
+ ensure => link,
122
+ target => '/etc/sysconfig/pgsql/postgresql',
123
+ require => File[ '/etc/sysconfig/pgsql/postgresql' ],
124
+ }
125
126
127
128
129
if ($manage_pg_ident_conf == true) {
130
concat { $pg_ident_conf_path:
131
owner => $user,
0 commit comments