adds basic classes
This commit is contained in:
8
manifests/init.pp
Normal file
8
manifests/init.pp
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
## postgresql_cd::init.pp
|
||||||
|
# Module name: postgresql_cd
|
||||||
|
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
||||||
|
# @summary Class initializes the postgresql_cd module.
|
||||||
|
##############################################################################
|
||||||
|
class postgresql_cd {
|
||||||
|
include postgresql_cd::params
|
||||||
|
}
|
||||||
10
manifests/main/config.pp
Normal file
10
manifests/main/config.pp
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
## postgresql_cd::main::config.pp
|
||||||
|
# Module name: postgresql_cd
|
||||||
|
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
||||||
|
# @summary Class manages logic for the postgresql_cd module.
|
||||||
|
##############################################################################
|
||||||
|
class postgresql_cd::main::config (
|
||||||
|
|
||||||
|
) inherits postgresql_cd::params {
|
||||||
|
|
||||||
|
}
|
||||||
13
manifests/params.pp
Normal file
13
manifests/params.pp
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
## postgresql_cd::params.pp
|
||||||
|
# Module name: postgresql_cd
|
||||||
|
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
||||||
|
# @summary Class contains all parameters for the postgresql_cd module.
|
||||||
|
##############################################################################
|
||||||
|
class postgresql_cd::params (
|
||||||
|
|
||||||
|
) {
|
||||||
|
|
||||||
|
# includes must be last
|
||||||
|
include postgresql_cd::main::config
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user