add installation

This commit is contained in:
Arne Teuke
2025-04-24 18:41:04 +02:00
parent 536c2263e8
commit 9a63807bf1
3 changed files with 22 additions and 4 deletions

View File

@@ -6,4 +6,5 @@
class php_cd::main::config (
) inherits php_cd::params {
include php_cd::main::install
}

12
manifests/main/install.pp Normal file
View File

@@ -0,0 +1,12 @@
## php_cd::main::install.pp
# Module name: php_cd
# Author: Arne Teuke (arne_teuke@confdroid.com)
# @summary Class manages the module logic
##############################################################################
class php_cd::main::install (
) inherits php_cd::params {
package { $reqpackages:
ensure => $pkg_ensure,
}
}