File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 26
26
}
27
27
28
28
file { $validcon_script_path:
29
- ensure => $file_ensure ,
30
- source => ' puppet:///modules/ postgresql/validate_postgresql_connection.sh' ,
31
- owner => 0,
32
- group => 0,
33
- mode => ' 0755' ,
29
+ ensure => $file_ensure ,
30
+ content => file ( ' postgresql/validate_postgresql_connection.sh' ) ,
31
+ owner => 0,
32
+ group => 0,
33
+ mode => ' 0755' ,
34
34
}
35
35
}
Original file line number Diff line number Diff line change 5
5
$gpg_key_path = " /etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-${package_version} "
6
6
7
7
file { $gpg_key_path:
8
- source => ' puppet:///modules/ postgresql/RPM-GPG-KEY-PGDG' ,
9
- owner => ' root' ,
10
- group => ' root' ,
11
- mode => ' 0644' ,
12
- before => Yumrepo[' yum.postgresql.org' ],
8
+ content => file ( ' postgresql/RPM-GPG-KEY-PGDG' ) ,
9
+ owner => ' root' ,
10
+ group => ' root' ,
11
+ mode => ' 0644' ,
12
+ before => Yumrepo[' yum.postgresql.org' ],
13
13
}
14
14
15
15
if ($facts [' os' ][' name' ] == ' Fedora' ) {
You can’t perform that action at this time.
0 commit comments