Skip to content

Commit a8c113e

Browse files
authoredNov 4, 2016
Merge pull request voxpupuli#265 from MiamiOH/manage_curl
Ability to manage my own curl
2 parents 3d5d439 + 380273f commit a8c113e

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed
 

‎manifests/composer.pp

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
# [*environment*]
1212
# Environment variables for settings such as http_proxy, https_proxy, or ftp_proxy
1313
#
14+
# [*manage_curl*]
15+
# Should we ensure curl is installed or do you want to manage that?
16+
#
1417
# [*auto_update*]
1518
# Defines if composer should be auto updated
1619
#
@@ -24,6 +27,7 @@
2427
$source = $::php::params::composer_source,
2528
$path = $::php::params::composer_path,
2629
$environment = undef,
30+
$manage_curl = true,
2731
$auto_update = true,
2832
$max_age = $::php::params::composer_max_age,
2933
$root_group = $::php::params::root_group,
@@ -38,7 +42,7 @@
3842
validate_bool($auto_update)
3943
validate_re("x${max_age}", '^x\d+$')
4044

41-
ensure_packages(['curl'])
45+
if $manage_curl { ensure_packages(['curl']) }
4246

4347
exec { 'download composer':
4448
command => "curl -L ${source} -o ${path}",

‎manifests/init.pp

+6
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@
4545
# These are passed through to the underlying exec(s), so it follows the same format
4646
# of the exec type `environment`
4747
#
48+
# [*manage_curl*]
49+
# Should we ensure curl is installed or do you want to manage that?
50+
#
4851
# [*extensions*]
4952
# Install PHP extensions, this is overwritten by hiera hash `php::extensions`
5053
#
@@ -99,6 +102,7 @@
99102
$pear_ensure = $::php::params::pear_ensure,
100103
$phpunit = false,
101104
$environment = undef,
105+
$manage_curl = true,
102106
$extensions = {},
103107
$settings = {},
104108
$package_prefix = $::php::params::package_prefix,
@@ -120,6 +124,7 @@
120124
validate_bool($ext_tool_enabled)
121125
validate_string($pear_ensure)
122126
validate_bool($phpunit)
127+
validate_bool($manage_curl)
123128
validate_hash($extensions)
124129
validate_hash($settings)
125130
validate_string($log_owner)
@@ -196,6 +201,7 @@
196201
Anchor['php::begin'] ->
197202
class { '::php::composer':
198203
environment => $environment,
204+
manage_curl => $manage_curl,
199205
} ->
200206
Anchor['php::end']
201207
}

0 commit comments

Comments
 (0)
Please sign in to comment.