33 lines
748 B
YAML
33 lines
748 B
YAML
---
|
|
- hosts: htcondor
|
|
tasks:
|
|
- name: "install htcondor repo"
|
|
yum:
|
|
name: https://research.cs.wisc.edu/htcondor/repo/8.9/htcondor-release-current.el7.noarch.rpm
|
|
state: present
|
|
tags: htcondor
|
|
|
|
- name: "install htcondor software "
|
|
yum:
|
|
name: htcondor-ce
|
|
state: present
|
|
tags: htcondor
|
|
|
|
- name: "remove minicondor configuration"
|
|
yum:
|
|
name: minicondor
|
|
state: absent
|
|
tags: htcondor
|
|
|
|
- name: "setup singularity"
|
|
import_tasks: "singularity.yml"
|
|
tags: singularity
|
|
|
|
- name: "setup docker"
|
|
import_role: name=docker
|
|
tags: docker
|
|
|
|
- name: "setup htcondor test environment in docker containers"
|
|
import_role: name=docker-htcondor
|
|
tags: htcondor-containered, htcondor
|