Skip to content

Commit 272d38b

Browse files
committed
Try repo and binaries
1 parent 6985d8a commit 272d38b

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

defaults/main.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
11
---
22
# defaults file for hephyvienna.htcondor-ce
3+
grid_htc_ce_repo_install: true
4+
grid_htc_ce_repo_developemnt_enable: false
5+
grid_htc_ce_batch_system: slurm
6+
grid_htc_ce_pkgs:
7+
- htcondor-ce-bdii
8+
- htcondor-ce-client
9+
- htcondor-ce-view
10+
- htcondor-ce
11+
- "htcondor-ce-{{ grid_htc_ce_batch_system }}"

tasks/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
---
22
# tasks file for hephyvienna.htcondor-ce
3+
- name: Install repositories
4+
include_tasks: repos.yum
5+
when: grid_htc_ce_repo_install

tasks/repos.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
- name: Install stable repository
3+
yum_repository:
4+
name: htcondor-stable
5+
description: "HTCondor Stable RPM Repository for Redhat Enterprise Linux {{ ansible_distribution_major_version }}"
6+
baseurl: "https://research.cs.wisc.edu/htcondor/yum/stable/8.8/rhel{{ ansible_distribution_major_version }}"
7+
enabled: true
8+
gpgcheck: true
9+
gpgkey: http://research.cs.wisc.edu/htcondor/yum/RPM-GPG-KEY-HTCondor
10+
11+
- name: Install development repository
12+
yum_repository:
13+
name: htcondor-development
14+
description: "HTCondor Development RPM Repository for Redhat Enterprise Linux {{ ansible_distribution_major_version }}"
15+
baseurl: "https://research.cs.wisc.edu/htcondor/yum/development/rhel{{ ansible_distribution_major_version }}"
16+
enabled: "{{ grid_htc_ce_repo_development_enable }}"
17+
gpgcheck: true
18+
gpgkey: http://research.cs.wisc.edu/htcondor/yum/RPM-GPG-KEY-HTCondor

0 commit comments

Comments
 (0)