Skip to content

Commit 953a6c6

Browse files
esalbergDavid Swan
authored and
David Swan
committed
Allow bypassing curl package ensure if needed
1 parent 9acae89 commit 953a6c6

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,14 @@ class { 'docker':
235235
}
236236
```
237237

238+
If the curl package is being managed elsewhere and the curl ensure in this module is conflicting,
239+
it can be disabled by setting the following parameter globally or in compose / machine resources:
240+
```puppet
241+
class { 'docker':
242+
curl_ensure => false
243+
}
244+
```
245+
238246
### Proxy on Windows
239247

240248
To use docker through a proxy on Windows, a System Environment Variable HTTP_PROXY/HTTPS_PROXY must be set. See [Docker Engine on Windows](https://docs.microsoft.com/en-us/virtualization/windowscontainers/manage-docker/configure-docker-daemon#proxy-configuration)

manifests/compose.pp

+9-2
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,19 @@
3737
# responsible for ensuring the URL points to the correct version and
3838
# architecture.
3939

40+
# [*curl_ensure*]
41+
# Whether or not the curl package is ensured by this module.
42+
# Defaults to true
43+
#
4044
class docker::compose(
4145
Optional[Pattern[/^present$|^absent$/]] $ensure = 'present',
4246
Optional[String] $version = $docker::params::compose_version,
4347
Optional[String] $install_path = $docker::params::compose_install_path,
4448
Optional[String] $symlink_name = $docker::params::compose_symlink_name,
4549
Optional[String] $proxy = undef,
4650
Optional[String] $base_url = $docker::params::compose_base_url,
47-
Optional[String] $raw_url = undef
51+
Optional[String] $raw_url = undef,
52+
Optional[Boolean] $curl_ensure = $docker::params::curl_ensure,
4853
) inherits docker::params {
4954

5055
if $proxy != undef {
@@ -93,7 +98,9 @@
9398
require => Exec["Install Docker Compose ${version}"]
9499
}
95100
} else {
96-
ensure_packages(['curl'])
101+
if $curl_ensure {
102+
ensure_packages(['curl'])
103+
}
97104
exec { "Install Docker Compose ${version}":
98105
path => '/usr/bin/',
99106
cwd => '/tmp',

manifests/machine.pp

+8-1
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,17 @@
2323
# [*url*]
2424
# The URL from which the docker machine binary should be fetched
2525
# Defaults to a auto determined value based on version, kernel and OS.
26+
#
27+
# [*curl_ensure*]
28+
# Whether or not the curl package is ensured by this module.
29+
# Defaults to true
2630
class docker::machine(
2731
Optional[Pattern[/^present$|^absent$/]] $ensure = 'present',
2832
Optional[String] $version = $docker::params::machine_version,
2933
Optional[String] $install_path = $docker::params::machine_install_path,
3034
Optional[String] $proxy = undef,
3135
Optional[Variant[Stdlib::HTTPUrl, Stdlib::HTTPSUrl]] $url = undef,
36+
Optional[Boolean] $curl_ensure = $docker::params::curl_ensure,
3237
) inherits docker::params {
3338

3439
if $proxy != undef {
@@ -75,7 +80,9 @@
7580
require => Exec["Install Docker Machine ${version}"]
7681
}
7782
} else {
78-
ensure_packages(['curl'])
83+
if $curl_ensure {
84+
ensure_packages(['curl'])
85+
}
7986
exec { "Install Docker Machine ${version}":
8087
path => '/usr/bin/',
8188
cwd => '/tmp',

manifests/params.pp

+1
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@
109109
$storage_pool_autoextend_percent = undef
110110
$storage_config_template = 'docker/etc/sysconfig/docker-storage.erb'
111111
$registry_mirror = undef
112+
$curl_ensure = true
112113
$os_lc = downcase($::operatingsystem)
113114
$docker_msft_provider_version = undef
114115
$nuget_package_provider_version = undef

0 commit comments

Comments
 (0)