-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #142 from ARGOeu/devel
Version 1.8.7
- Loading branch information
Showing
7 changed files
with
59 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[copr] | ||
name=Copr repo for PyPI owned by @copr | ||
baseurl=https://download.copr.fedorainfracloud.org/results/@copr/PyPI/epel-9-$basearch/ | ||
type=rpm-md | ||
skip_if_unavailable=True | ||
gpgcheck=1 | ||
gpgkey=https://download.copr.fedorainfracloud.org/results/@copr/PyPI/pubkey.gpg | ||
repo_gpgcheck=0 | ||
enabled=1 | ||
enabled_metadata=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
class argo::mon::copr () { | ||
|
||
File { | ||
ensure => present, | ||
owner => root, | ||
group => root, | ||
mode => '0644', | ||
} | ||
|
||
if (Integer($facts['os']['release']['major']) > 7) { | ||
file { '/etc/yum.repos.d/copr.repo': | ||
source => 'puppet:///modules/argo/mon/repos/copr.repo', | ||
} | ||
} | ||
|
||
} |
17 changes: 8 additions & 9 deletions
17
files/mon/condor/htcondor.repo → templates/mon/condor/htcondor.repo.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,26 @@ | ||
[htcondor] | ||
name=HTCondor for Enterprise Linux 9 - Release | ||
baseurl=https://research.cs.wisc.edu/htcondor/repo/10.x/el9/$basearch/release | ||
enabled=1 | ||
baseurl=https://research.cs.wisc.edu/htcondor/repo/<%= @version %>/el9/$basearch/release | ||
enabled=<%= @enabled %> | ||
gpgcheck=1 | ||
repo_gpgcheck=1 | ||
gpgkey=https://research.cs.wisc.edu/htcondor/repo/keys/HTCondor-10.x-Key | ||
gpgkey=https://research.cs.wisc.edu/htcondor/repo/keys/HTCondor-<%= @version %>-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 | ||
baseurl=https://research.cs.wisc.edu/htcondor/repo/<%= @version %>/el9/$basearch/release/debug | ||
enabled=0 | ||
gpgcheck=1 | ||
repo_gpgcheck=1 | ||
gpgkey=https://research.cs.wisc.edu/htcondor/repo/keys/HTCondor-10.x-Key | ||
gpgkey=https://research.cs.wisc.edu/htcondor/repo/keys/HTCondor-<%= @version %>-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 | ||
baseurl=https://research.cs.wisc.edu/htcondor/repo/<%= @version %>/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 | ||
|
||
gpgkey=https://research.cs.wisc.edu/htcondor/repo/keys/HTCondor-<%= @version %>-Key | ||
priority=90 |