31 lines
785 B
YAML
31 lines
785 B
YAML
---
|
|
- hosts: ed-c7-1
|
|
tasks:
|
|
- name: "install tools"
|
|
yum:
|
|
name: [ "vim-enhanced", "htop", "screen", "bind-utils", "nmap-ncat",
|
|
"net-tools" ]
|
|
state: present
|
|
|
|
- name: "install htcondor repo"
|
|
yum:
|
|
name: https://research.cs.wisc.edu/htcondor/repo/8.9/htcondor-release-current.el7.noarch.rpm
|
|
state: present
|
|
|
|
- name: "install htcondor software and minicondor configuration"
|
|
yum:
|
|
name: [ "htcondor-ce", "minicondor" ]
|
|
state: present
|
|
|
|
- name: "setup singularity"
|
|
import_tasks: "singularity.yml"
|
|
tags: singularity
|
|
|
|
- name: "setup docker"
|
|
import_tasks: "docker_setup.yml"
|
|
tags: docker
|
|
|
|
- name: "setup htcondor test environment in docker containers"
|
|
import_tasks: "docker_htcondor.yml"
|
|
tags: docker-con
|