Merge pull request #302 from n1tr0g/master
Missing depedenncy '->' and class misspelled (missing ending s)
This commit is contained in:
commit
2819ce7be8
1 changed files with 3 additions and 3 deletions
|
@ -172,7 +172,7 @@ Since PostgreSQL uses the terminology `encoding` not `charset` the parameter has
|
|||
|
||||
####The `postgresql` base class is no longer how you set globals
|
||||
|
||||
The old global override pattern was less then optimal so it has been fixed, however we decided to demark this properly by specifying these overrides in the class `postgresql::global`. Consult the documentation for this class now to see what options are available.
|
||||
The old global override pattern was less then optimal so it has been fixed, however we decided to demark this properly by specifying these overrides in the class `postgresql::globals`. Consult the documentation for this class now to see what options are available.
|
||||
|
||||
Also, some parameter elements have been moved between this and the `postgresql::server` class where it made sense.
|
||||
|
||||
|
@ -245,7 +245,7 @@ This class allows you to configure the main settings for this module in a global
|
|||
|
||||
For example, if you wanted to overwrite the default `locale` and `encoding` for all classes you could use the following combination:
|
||||
|
||||
class { 'postgresql::global':
|
||||
class { 'postgresql::globals':
|
||||
encoding => 'UTF8',
|
||||
locale => 'en_NG',
|
||||
}->
|
||||
|
@ -259,7 +259,7 @@ If you want to use the upstream PostgreSQL packaging, and be specific about the
|
|||
class { 'postgresql::globals':
|
||||
manage_package_repo => true,
|
||||
version => '9.2',
|
||||
}
|
||||
}->
|
||||
class { 'postgresql::server': }
|
||||
|
||||
####`client_package_name`
|
||||
|
|
Loading…
Reference in a new issue