forked from gsdc/ansible-htcondorce
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
15 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
--- | ||
galaxy_info: | ||
role_name: htcondor_ce | ||
author: Dietrich Liko | ||
description: HTCondor CE | ||
company: Institute for High Energy Physics, Austrian Academy of Sciences | ||
issue_tracker_url: https://gitlab.cern.ch/hephyvienna/ansible/role-htcondor-ce/issues | ||
author: Geonmo Ryu | ||
description: HTCondor CE / modified HEPHY's htcondor-ce ansible code | ||
company: Korea Institute of Science and Technology Information | ||
license: MIT | ||
min_ansible_version: 2.7 | ||
platforms: | ||
- name: EL | ||
versions: | ||
- 6 | ||
- 7 | ||
- 8 | ||
galaxy_tags: [] | ||
dependencies: [] |
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,16 +1,14 @@ | ||
--- | ||
- name: Install stable repository | ||
yum_repository: | ||
name: "{{ item.name }}" | ||
description: "{{ item.description }}" | ||
baseurl: "{{ item.baseurl }}" | ||
enabled: "{{ item.enabled }}" | ||
gpgcheck: no | ||
gpgkey: http://research.cs.wisc.edu/htcondor/yum/RPM-GPG-KEY-HTCondor | ||
loop: | ||
- name: htcondor-stable | ||
description: "HTCondor Stable RPM Repository for Redhat Enterprise Linux {{ ansible_distribution_major_version }}" | ||
baseurl: "https://research.cs.wisc.edu/htcondor/repo/{{ condor_version }}/htcondor-release-current.el{{ ansible_distribution_major_version }}" | ||
enabled: true | ||
- name: Install HTCondor repository | ||
yum: | ||
name: "https://research.cs.wisc.edu/htcondor/repo/{{ condor_version }}/htcondor-release-current.el{{ ansible_distribution_major_version }}.noarch.rpm" | ||
when: ansible_facts['distribution_file_variety'] == "RedHat" | ||
- name: Enable powertools repo for CentOS8 variation. | ||
shell: | ||
cmd: dnf config-manager --set-enabled powertools | ||
when: | ||
- ansible_facts['distribution_file_variety'] == "RedHat" | ||
- ansible_facts['distribution_major_version'] == "8" | ||
|
||
|
||
|