Puppet Class: wordpress::app

Defined in:
manifests/app.pp

Overview

Parameters:

  • install_dir (Any)
  • install_url (Any)
  • version (Any)
  • db_name (Any)
  • db_host (Any)
  • db_user (Any)
  • db_password (Any)
  • wp_owner (Any)
  • wp_group (Any)
  • wp_lang (Any)
  • wp_config_content (Any)
  • wp_plugin_dir (Any)
  • wp_additional_config (Any)
  • wp_table_prefix (Any)
  • wp_proxy_host (Any)
  • wp_proxy_port (Any)
  • wp_multisite (Any)
  • wp_site_domain (Any)
  • wp_debug (Any)
  • wp_debug_log (Any)
  • wp_debug_display (Any)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'manifests/app.pp', line 1

class wordpress::app (
  $install_dir,
  $install_url,
  $version,
  $db_name,
  $db_host,
  $db_user,
  $db_password,
  $wp_owner,
  $wp_group,
  $wp_lang,
  $wp_config_content,
  $wp_plugin_dir,
  $wp_additional_config,
  $wp_table_prefix,
  $wp_proxy_host,
  $wp_proxy_port,
  $wp_multisite,
  $wp_site_domain,
  $wp_debug,
  $wp_debug_log,
  $wp_debug_display,
) {
  wordpress::instance::app { $install_dir:
    install_dir          => $install_dir,
    install_url          => $install_url,
    version              => $version,
    db_name              => $db_name,
    db_host              => $db_host,
    db_user              => $db_user,
    db_password          => $db_password,
    wp_owner             => $wp_owner,
    wp_group             => $wp_group,
    wp_lang              => $wp_lang,
    wp_plugin_dir        => $wp_plugin_dir,
    wp_additional_config => $wp_additional_config,
    wp_table_prefix      => $wp_table_prefix,
    wp_proxy_host        => $wp_proxy_host,
    wp_proxy_port        => $wp_proxy_port,
    wp_multisite         => $wp_multisite,
    wp_site_domain       => $wp_site_domain,
    wp_debug             => $wp_debug,
    wp_debug_log         => $wp_debug_log,
    wp_debug_display     => $wp_debug_display,
  }
}