removed inherits postgresql::params
inheriting postgresql::params creates a cycle, because postgresql::repo gets instantiated in postgresql::globals which is inherited by postgresql::params. Also postgresql::params are not needed, because only version is used by postgresql::repo, postgresql::repo::yum_postgresql_org and postgresql::repo::apt_postgresql_org and it get set in postgresql::globals by a resource like class instantiation.
This commit is contained in:
parent
213bb754a0
commit
15071237e1
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
|||
class postgresql::repo (
|
||||
$version = undef,
|
||||
$proxy = undef,
|
||||
) inherits postgresql::params {
|
||||
) {
|
||||
case $::osfamily {
|
||||
'RedHat', 'Linux': {
|
||||
if $version == undef {
|
||||
|
|
Loading…
Reference in a new issue