Skip to content

Commit

Permalink
Fix baseurl for yum repositories
Browse files Browse the repository at this point in the history
  • Loading branch information
wiene committed Jul 4, 2017
1 parent 711b2ad commit f4676a5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions manifests/repositories.pp
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
'RedHat' : {
if $dev_repos {
yumrepo { 'htcondor-development':
descr => "HTCondor Development RPM Repository for Redhat Enterprise Linux ${major_release}",
baseurl => "http://research.cs.wisc.edu/htcondor/yum/development/rhel${major_release}",
descr => "HTCondor Development RPM Repository for Redhat Enterprise Linux ${facts['os']['release']['major']}",
baseurl => 'http://research.cs.wisc.edu/htcondor/yum/development/rhel$releasever',
enabled => 1,
gpgcheck => 0,
priority => $condor_priority,
Expand All @@ -20,8 +20,8 @@
}
} else {
yumrepo { 'htcondor-stable':
descr => "HTCondor Stable RPM Repository for Redhat Enterprise Linux ${major_release}",
baseurl => "http://research.cs.wisc.edu/htcondor/yum/stable/rhel${major_release}",
descr => "HTCondor Stable RPM Repository for Redhat Enterprise Linux ${facts['os']['release']['major']}",
baseurl => 'http://research.cs.wisc.edu/htcondor/yum/stable/rhel$releasever',
enabled => 1,
gpgcheck => 0,
priority => $condor_priority,
Expand Down

0 comments on commit f4676a5

Please sign in to comment.