Skip to content

Commit e29e0c0

Browse files
committed
Reverted some of the coding style fixes. Strings containing single quotes may be easier to read if enclosed in double quotes although it generated puppet lint warning.
1 parent 3986210 commit e29e0c0

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

manifests/config/beforeservice.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
# managing their own settings in a second conf file.
7474
file_line { 'postgresql.conf#include':
7575
path => $postgresql_conf_path,
76-
line => 'include \'postgresql_puppet_extras.conf\'',
76+
line => "include 'postgresql_puppet_extras.conf'",
7777
notify => Service['postgresqld'],
7878
}
7979

manifests/init.pp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
$charset = 'UTF8'
5151
) {
5252
class { 'postgresql::params':
53-
5453
version => $version,
5554
manage_package_repo => $manage_package_repo,
5655
package_source => $package_source,

manifests/params.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
# that pluginsync might not be enabled. Ideally this would be handled directly
8282
# in puppet.
8383
if ($::postgres_default_version == undef) {
84-
fail 'No value for postgres_default_version facter fact; it\'s possible that you don\'t have pluginsync enabled.'
84+
fail "No value for postgres_default_version facter fact; it's possible that you don't have pluginsync enabled."
8585
}
8686

8787
case $::operatingsystem {

0 commit comments

Comments
 (0)