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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
# 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_plugin_dir,
$wp_proxy_host,
$wp_proxy_port,
$wp_multisite,
$wp_site_domain,
) {
validate_string($install_dir,$install_url,$version,$db_name,$db_host,$db_user,$db_password,$wp_owner,$wp_group, $wp_lang, $wp_plugin_dir,$wp_proxy_host,$wp_proxy_port,$wp_site_domain)
validate_bool($wp_multisite)
validate_absolute_path($install_dir)
if $wp_multisite and ! $wp_site_domain {
fail('wordpress class requires `wp_site_domain` parameter when `wp_multisite` is true')
}
## Resource defaults
File {
owner => $wp_owner,
group => $wp_group,
mode => '0644',
}
Exec {
path => ['/bin','/sbin','/usr/bin','/usr/sbin'],
cwd => $install_dir,
logoutput => 'on_failure',
user => $wp_owner,
group => $wp_group,
}
## Installation directory
if ! defined(File[$install_dir]) {
file { $install_dir:
ensure => directory,
recurse => true,
}
} else {
notice("Warning: cannot manage the permissions of ${install_dir}, as another resource (perhaps apache::vhost?) is managing it.")
}
## Download and extract
exec { 'Download wordpress':
command => "wget ${install_url}/wordpress-${version}.tar.gz",
creates => "${install_dir}/wordpress-${version}.tar.gz",
require => File[$install_dir],
}
-> exec { 'Extract wordpress':
command => "tar zxvf ./wordpress-${version}.tar.gz --strip-components=1",
creates => "${install_dir}/index.php",
}
~> exec { 'Change ownership':
command => "chown -R ${wp_owner}:${wp_group} ${install_dir}",
refreshonly => true,
}
## Configure wordpress
#
# Template uses no variables
file { "${install_dir}/wp-keysalts.php":
ensure => present,
content => template('wordpress/wp-keysalts.php.erb'),
replace => false,
require => Exec['Extract wordpress'],
}
concat { "${install_dir}/wp-config.php":
owner => $wp_owner,
group => $wp_group,
mode => '0755',
require => Exec['Extract wordpress'],
}
concat::fragment { 'wp-config.php keysalts':
target => "${install_dir}/wp-config.php",
source => "${install_dir}/wp-keysalts.php",
order => '10',
require => File["${install_dir}/wp-keysalts.php"],
}
# Template uses: $db_name, $db_user, $db_password, $db_host, $wp_proxy, $wp_proxy_host, $wp_proxy_port, $wp_multisite, $wp_site_domain
concat::fragment { 'wp-config.php body':
target => "${install_dir}/wp-config.php",
content => template('wordpress/wp-config.php.erb'),
order => '20',
}
}
|