File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 11
11
# [*environment*]
12
12
# Environment variables for settings such as http_proxy, https_proxy, or ftp_proxy
13
13
#
14
+ # [*manage_curl*]
15
+ # Should we ensure curl is installed or do you want to manage that?
16
+ #
14
17
# [*auto_update*]
15
18
# Defines if composer should be auto updated
16
19
#
24
27
$source = $::php::params::composer_source,
25
28
$path = $::php::params::composer_path,
26
29
$environment = undef ,
30
+ $manage_curl = true ,
27
31
$auto_update = true ,
28
32
$max_age = $::php::params::composer_max_age,
29
33
$root_group = $::php::params::root_group,
38
42
validate_bool($auto_update )
39
43
validate_re(" x${max_age} " , ' ^x\d +$' )
40
44
41
- ensure_packages([' curl' ])
45
+ if $manage_curl { ensure_packages([' curl' ]) }
42
46
43
47
exec { 'download composer' :
44
48
command => " curl -L ${source} -o ${path} " ,
Original file line number Diff line number Diff line change 45
45
# These are passed through to the underlying exec(s), so it follows the same format
46
46
# of the exec type `environment`
47
47
#
48
+ # [*manage_curl*]
49
+ # Should we ensure curl is installed or do you want to manage that?
50
+ #
48
51
# [*extensions*]
49
52
# Install PHP extensions, this is overwritten by hiera hash `php::extensions`
50
53
#
99
102
$pear_ensure = $::php::params::pear_ensure,
100
103
$phpunit = false ,
101
104
$environment = undef ,
105
+ $manage_curl = true ,
102
106
$extensions = {},
103
107
$settings = {},
104
108
$package_prefix = $::php::params::package_prefix ,
120
124
validate_bool($ext_tool_enabled )
121
125
validate_string($pear_ensure )
122
126
validate_bool($phpunit )
127
+ validate_bool($manage_curl )
123
128
validate_hash($extensions )
124
129
validate_hash($settings )
125
130
validate_string($log_owner )
196
201
Anchor[' php::begin' ] ->
197
202
class { '::php::composer' :
198
203
environment => $environment ,
204
+ manage_curl => $manage_curl ,
199
205
} ->
200
206
Anchor[' php::end' ]
201
207
}
You can’t perform that action at this time.
0 commit comments