forked from voxpupuli/puppet-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.pp
More file actions
48 lines (44 loc) · 1.16 KB
/
Copy pathphpunit.pp
File metadata and controls
48 lines (44 loc) · 1.16 KB
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
# Install phpunit, PHP testing framework
#
# === Parameters
#
# [*source*]
# Holds URL to the phpunit source file
#
# [*path*]
# Holds path to the phpunit executable
#
# [*auto_update*]
# Defines if phpunit should be auto updated
#
# [*max_age*]
# Defines the time in days after which an auto-update gets executed
#
class php::phpunit (
String $source = $php::params::phpunit_source,
Stdlib::Absolutepath $path = $php::params::phpunit_path,
String[1] $root_group = $php::params::root_group,
Boolean $auto_update = true,
Integer $max_age = $php::params::phpunit_max_age,
) inherits php::params {
assert_private()
ensure_packages(['wget'])
exec { 'download phpunit':
command => "wget ${source} -O ${path}",
creates => $path,
path => ['/bin/', '/sbin/' , '/usr/bin/', '/usr/sbin/', '/usr/local/bin', '/usr/local/sbin'],
require => [Class['php::cli'],Package['wget']],
}
-> file { $path:
mode => '0555',
owner => root,
group => $root_group,
}
if $auto_update {
class { 'php::phpunit::auto_update':
max_age => $max_age,
source => $source,
path => $path,
}
}
}