forked from EESSI/filesystem-layer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stratum1.yml
29 lines (29 loc) · 874 Bytes
/
stratum1.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Install CVMFS Stratum 1 server(s).
---
- name: CVMFS Stratum 1
hosts: cvmfsstratum1servers
pre_tasks:
- name: Fix that adds additional dependencies for Debian systems
set_fact:
cvmfs_packages:
stratum1:
- apache2
- libapache2-mod-wsgi
- squid
- cvmfs-server
- cvmfs-config-default
when: ansible_facts['os_family'] == 'Debian'
- name: Fix for CentOS 8
set_fact:
cvmfs_packages:
stratum1:
- httpd
- python3-mod_wsgi
- squid
- cvmfs-server
- cvmfs-config-default
when: ansible_facts['os_family'] == 'RedHat' and ansible_facts['distribution_major_version'] == '8'
roles:
- role: geerlingguy.repo-epel
when: ansible_facts['os_family'] == 'RedHat'
- galaxyproject.cvmfs