Merge pull request #118 from fhrbek/coding_style_reverts
Reverted some of the coding style fixes
This commit is contained in:
commit
8dba376aff
3 changed files with 2 additions and 3 deletions
|
@ -73,7 +73,7 @@ class postgresql::config::beforeservice(
|
|||
# managing their own settings in a second conf file.
|
||||
file_line { 'postgresql.conf#include':
|
||||
path => $postgresql_conf_path,
|
||||
line => 'include \'postgresql_puppet_extras.conf\'',
|
||||
line => "include 'postgresql_puppet_extras.conf'",
|
||||
notify => Service['postgresqld'],
|
||||
}
|
||||
|
||||
|
|
|
@ -50,7 +50,6 @@ class postgresql (
|
|||
$charset = 'UTF8'
|
||||
) {
|
||||
class { 'postgresql::params':
|
||||
|
||||
version => $version,
|
||||
manage_package_repo => $manage_package_repo,
|
||||
package_source => $package_source,
|
||||
|
|
|
@ -81,7 +81,7 @@ class postgresql::params(
|
|||
# that pluginsync might not be enabled. Ideally this would be handled directly
|
||||
# in puppet.
|
||||
if ($::postgres_default_version == undef) {
|
||||
fail 'No value for postgres_default_version facter fact; it\'s possible that you don\'t have pluginsync enabled.'
|
||||
fail "No value for postgres_default_version facter fact; it's possible that you don't have pluginsync enabled."
|
||||
}
|
||||
|
||||
case $::operatingsystem {
|
||||
|
|
Loading…
Reference in a new issue