Skip to content

Commit 2a10cc1

Browse files
committed
Allow bypassing curl package ensure if needed
1 parent 2d7027b commit 2a10cc1

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,14 @@ class { 'docker':
240240
}
241241
```
242242

243+
If the curl package is being managed elsewhere and the curl ensure in this module is conflicting,
244+
it can be disabled by setting the following parameter globally or in compose / machine resources:
245+
```puppet
246+
class { 'docker':
247+
curl_ensure => false
248+
}
249+
```
250+
243251
### Proxy on Windows
244252

245253
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
@@ -31,13 +31,18 @@
3131
# responsible for ensuring the URL points to the correct version and
3232
# architecture.
3333

34+
# [*curl_ensure*]
35+
# Whether or not the curl package is ensured by this module.
36+
# Defaults to true
37+
#
3438
class docker::compose(
3539
Optional[Pattern[/^present$|^absent$/]] $ensure = 'present',
3640
Optional[String] $version = $docker::params::compose_version,
3741
Optional[String] $install_path = $docker::params::compose_install_path,
3842
Optional[String] $proxy = undef,
3943
Optional[String] $base_url = $docker::params::compose_base_url,
40-
Optional[String] $raw_url = undef
44+
Optional[String] $raw_url = undef,
45+
Optional[Boolean] $curl_ensure = $docker::params::curl_ensure,
4146
) inherits docker::params {
4247

4348
if $proxy != undef {
@@ -86,7 +91,9 @@
8691
require => Exec["Install Docker Compose ${version}"]
8792
}
8893
} else {
89-
ensure_packages(['curl'])
94+
if $curl_ensure {
95+
ensure_packages(['curl'])
96+
}
9097
exec { "Install Docker Compose ${version}":
9198
path => '/usr/bin/',
9299
cwd => '/tmp',

manifests/machine.pp

+9-2
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,16 @@
2020
# [*proxy*]
2121
# Proxy to use for downloading Docker Machine.
2222
#
23+
# [*curl_ensure*]
24+
# Whether or not the curl package is ensured by this module.
25+
# Defaults to true
26+
#
2327
class docker::machine(
2428
Optional[Pattern[/^present$|^absent$/]] $ensure = 'present',
2529
Optional[String] $version = $docker::params::machine_version,
2630
Optional[String] $install_path = $docker::params::machine_install_path,
27-
Optional[String] $proxy = undef
31+
Optional[String] $proxy = undef,
32+
Optional[Boolean] $curl_ensure = $docker::params::curl_ensure,
2833
) inherits docker::params {
2934

3035
if $proxy != undef {
@@ -68,7 +73,9 @@
6873
require => Exec["Install Docker Machine ${version}"]
6974
}
7075
} else {
71-
ensure_packages(['curl'])
76+
if $curl_ensure {
77+
ensure_packages(['curl'])
78+
}
7279
exec { "Install Docker Machine ${version}":
7380
path => '/usr/bin/',
7481
cwd => '/tmp',

manifests/params.pp

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

0 commit comments

Comments
 (0)