Skip to content

Commit

Permalink
Merge pull request #123 from ARGOeu/devel
Browse files Browse the repository at this point in the history
Version 1.8.1
  • Loading branch information
themiszamani authored Jun 27, 2024
2 parents d851854 + 09d2bd3 commit 2ba1834
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

Release notes for argo-puppet module

### 1.8.1 - 27 Jun 2024

* AO-985 Include repo for HTCondor packages on Rocky 9
* AO-983 Add nordugrid-arc-nagios-plugins-egi to Puppet configuration files regarding arc

### 1.8.0 - 17 Jun 2024

* AO-972 Change argo-poem-tools.conf.erb template to work with the changes in the tool
Expand Down
27 changes: 27 additions & 0 deletions files/mon/condor/htcondor.repo
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[htcondor]
name=HTCondor for Enterprise Linux 9 - Release
baseurl=https://research.cs.wisc.edu/htcondor/repo/10.x/el9/$basearch/release
enabled=1
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://research.cs.wisc.edu/htcondor/repo/keys/HTCondor-10.x-Key
priority=90

[htcondor-debuginfo]
name=HTCondor for Enterprise Linux 9 - Release - Debug
baseurl=https://research.cs.wisc.edu/htcondor/repo/10.x/el9/$basearch/release/debug
enabled=0
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://research.cs.wisc.edu/htcondor/repo/keys/HTCondor-10.x-Key
priority=90

[htcondor-source]
name=HTCondor for Enterprise Linux 9 - Release - Source
baseurl=https://research.cs.wisc.edu/htcondor/repo/10.x/el9/$basearch/release/SRPMS
enabled=0
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://research.cs.wisc.edu/htcondor/repo/keys/HTCondor-10.x-Key
priority=90

2 changes: 1 addition & 1 deletion manifests/mon/arc.pp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
mode => '0644',
}

package { ['nordugrid-arc-nagios-plugins', 'argo-probe-igtf', 'argo-probe-sensu']:
package { ['nordugrid-arc-nagios-plugins', 'nordugrid-arc-nagios-plugins-egi', 'argo-probe-igtf', 'argo-probe-sensu']:
}

file { '/etc/arc/nagios/90-local.ini':
Expand Down
7 changes: 7 additions & 0 deletions manifests/mon/condor.pp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@
group => root,
mode => '0644',
}

if (Integer($facts['os']['release']['major']) > 7) {
file { '/etc/yum.repos.d/htcondor.repo':
source => 'puppet:///modules/argo/mon/condor/htcondor.repo',
mode => '0644',
}
}

package { 'condor':
}
Expand Down

0 comments on commit 2ba1834

Please sign in to comment.