Skip to content

Commit

Permalink
don't force ensure=>latest on our package resources
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeni authored and ekohl committed Jun 27, 2024
1 parent 965aec5 commit 6999dfa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion puppet/modules/jenkins_node/manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
'unzip':
ensure => present;
'ansible':
ensure => latest;
ensure => present;
}

if $unittests {
Expand Down
4 changes: 2 additions & 2 deletions puppet/modules/jenkins_node/manifests/unittests.pp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
include epel

package { ['chromium', 'chromedriver']:
ensure => latest,
ensure => present,
require => Class['epel'],
}
}
Expand All @@ -122,7 +122,7 @@
# Needed by foreman_openscap gem dependency OpenSCAP
if $facts['os']['family'] == 'RedHat' {
package { 'openscap':
ensure => latest,
ensure => present,
}
}

Expand Down

0 comments on commit 6999dfa

Please sign in to comment.