Puppet Class: wordpress
- Defined in:
- manifests/init.pp
Overview
Manage Wordpress installations.
11 12 13 14 15 16 17 18 19 |
# File 'manifests/init.pp', line 11
class wordpress (
Hash[String, Hash[String, Any]] $instances = {},
) {
contain ::wordpress::install
contain ::wordpress::config
Class['::wordpress::install'] -> Class['::wordpress::config']
}
|