Skip to content

Commit

Permalink
Merge pull request #113 from ARGOeu/devel
Browse files Browse the repository at this point in the history
Version 1.7.0
  • Loading branch information
themiszamani authored Mar 19, 2024
2 parents 292b507 + d150a17 commit f68c596
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Release notes for argo-puppet module

### 1.7.0 - 19 Mar 2024

* AO-935 Install python-argo-ams-library only on el7

### 1.6.0 - 13 Mar 2024

* AO-918 Modify module so that it does not include unnecessary repos
Expand Down
8 changes: 5 additions & 3 deletions manifests/mon/amspublisher.pp
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@
package { 'python3-argo-ams-library':
ensure => latest,
}

package { 'python-argo-ams-library':
ensure => latest,

if (Integer($facts['os']['release']['major']) < 8) {
package { 'python-argo-ams-library':
ensure => latest,
}
}

if ($argo::mon::sensu) {
Expand Down

0 comments on commit f68c596

Please sign in to comment.