Skip to content

Commit

Permalink
Change meta info
Browse files Browse the repository at this point in the history
  • Loading branch information
geonmo committed Nov 22, 2022
1 parent c8678ba commit de6b56c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 18 deletions.
9 changes: 4 additions & 5 deletions meta/main.yml
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: []
24 changes: 11 additions & 13 deletions tasks/repos.yml
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"



0 comments on commit de6b56c

Please sign in to comment.