Skip to content

Commit 86d8f09

Browse files
committed
Add a parameter to package mark hold
1 parent 543c582 commit 86d8f09

File tree

6 files changed

+46
-8
lines changed

6 files changed

+46
-8
lines changed

REFERENCE.md

+13-4
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@
5757

5858
### Data types
5959

60-
* [`Elasticsearch::Multipath`](#Elasticsearch--Multipath)
61-
* [`Elasticsearch::Status`](#Elasticsearch--Status)
60+
* [`Elasticsearch::Multipath`](#Elasticsearch--Multipath): Elasticsearch datadir multipath type
61+
* [`Elasticsearch::Status`](#Elasticsearch--Status): Elasticsearch service status type
6262

6363
## Classes
6464

@@ -144,6 +144,7 @@ The following parameters are available in the `elasticsearch` class:
144144
* [`oss`](#-elasticsearch--oss)
145145
* [`package_dir`](#-elasticsearch--package_dir)
146146
* [`package_dl_timeout`](#-elasticsearch--package_dl_timeout)
147+
* [`package_hold`](#-elasticsearch--package_hold)
147148
* [`package_name`](#-elasticsearch--package_name)
148149
* [`package_provider`](#-elasticsearch--package_provider)
149150
* [`package_url`](#-elasticsearch--package_url)
@@ -508,6 +509,14 @@ Data type: `Integer`
508509
For http, https, and ftp downloads, you may set how long the exec resource
509510
may take.
510511

512+
##### <a name="-elasticsearch--package_hold"></a>`package_hold`
513+
514+
Data type: `Boolean`
515+
516+
Set to hold to tell Debian apt/Solaris pkg to hold the package version.
517+
518+
Default value: `false`
519+
511520
##### <a name="-elasticsearch--package_name"></a>`package_name`
512521

513522
Data type: `String`
@@ -3237,13 +3246,13 @@ Returns: `Any` String
32373246

32383247
### <a name="Elasticsearch--Multipath"></a>`Elasticsearch::Multipath`
32393248

3240-
The Elasticsearch::Multipath data type.
3249+
Elasticsearch datadir multipath type
32413250

32423251
Alias of `Variant[Array[Stdlib::Absolutepath], Stdlib::Absolutepath]`
32433252

32443253
### <a name="Elasticsearch--Status"></a>`Elasticsearch::Status`
32453254

3246-
The Elasticsearch::Status data type.
3255+
Elasticsearch service status type
32473256

32483257
Alias of `Enum['enabled', 'disabled', 'running', 'unmanaged']`
32493258

manifests/init.pp

+5-1
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,9 @@
184184
# For http, https, and ftp downloads, you may set how long the exec resource
185185
# may take.
186186
#
187+
# @param package_hold
188+
# Set to hold to tell Debian apt/Solaris pkg to hold the package version.
189+
#
187190
# @param package_name
188191
# Name Of the package to install.
189192
#
@@ -430,12 +433,13 @@
430433
String $default_logging_level = $logging_level,
431434
Optional[String] $keystore_password = undef,
432435
Optional[Stdlib::Absolutepath] $keystore_path = undef,
436+
Stdlib::Filemode $logdir_mode = '2750',
437+
Boolean $package_hold = false,
433438
Optional[Stdlib::Absolutepath] $private_key = undef,
434439
Enum['rsa','dsa','ec'] $private_key_type = 'rsa',
435440
Boolean $restart_config_change = $restart_on_change,
436441
Boolean $restart_package_change = $restart_on_change,
437442
Boolean $restart_plugin_change = $restart_on_change,
438-
Stdlib::Filemode $logdir_mode = '2750',
439443
) {
440444
#### Validate parameters
441445

manifests/package.pp

+13-3
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,19 @@
153153
}
154154

155155
if ($elasticsearch::package_provider == 'package') {
156-
package { 'elasticsearch':
157-
ensure => $package_ensure,
158-
name => $elasticsearch::_package_name,
156+
# You cannot use "mark" property while "ensure" is one of ["absent", "purged", "held"]
157+
if $package_ensure in ['absent', 'purged', 'held'] {
158+
package { 'elasticsearch':
159+
ensure => $package_ensure,
160+
name => $elasticsearch::_package_name,
161+
}
162+
} else {
163+
# https://puppet.com/docs/puppet/7/types/package.html#package-attribute-mark
164+
package { 'elasticsearch':
165+
ensure => $package_ensure,
166+
name => $elasticsearch::_package_name,
167+
mark => ($elasticsearch::package_hold ? { true => 'hold', false => 'none', }),
168+
}
159169
}
160170

161171
exec { 'remove_plugin_dir':

spec/classes/000_elasticsearch_init_spec.rb

+13
Original file line numberDiff line numberDiff line change
@@ -435,6 +435,19 @@
435435
with(ensure: 'latest')
436436
}
437437
end
438+
439+
describe 'with hold enabled' do
440+
let(:params) do
441+
default_params.merge(
442+
package_hold: true
443+
)
444+
end
445+
446+
it {
447+
expect(subject).to contain_package('elasticsearch').
448+
with(mark: 'hold')
449+
}
450+
end
438451
end
439452

440453
describe 'running a different user' do

types/multipath.pp

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
# Elasticsearch datadir multipath type
12
type Elasticsearch::Multipath = Variant[Array[Stdlib::Absolutepath], Stdlib::Absolutepath]

types/status.pp

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
# Elasticsearch service status type
12
type Elasticsearch::Status = Enum['enabled', 'disabled', 'running', 'unmanaged']

0 commit comments

Comments
 (0)