Skip to content

Commit 1cb2e70

Browse files
committed
add cvmfs repo to snapshots
1 parent 51fd04a commit 1cb2e70

File tree

4 files changed

+22
-8
lines changed

4 files changed

+22
-8
lines changed

ansible/roles/eessi/tasks/install.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@
1111
- name: Import downloaded GPG key # noqa: no-changed-when
1212
ansible.builtin.command: rpm --import cvmfs-key.gpg # noqa: command-instead-of-module
1313

14-
- name: Add CVMFS repo
15-
ansible.builtin.dnf:
16-
name: "https://ecsft.cern.ch/dist/cvmfs/cvmfs-release/cvmfs-release-{{ cvmfs_release_version }}.noarch.rpm"
14+
# cvmfs repo provided by dnf_repos role
1715

1816
- name: Install CVMFS
1917
ansible.builtin.dnf:

ansible/roles/openondemand/defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ openondemand_osc_ood_defaults:
102102
ood_auth_openidc: "{{ openondemand_auth_defaults.oidc.ood_auth_openidc if (openondemand_auth | lower) == 'oidc' else none }}"
103103
httpd_auth: "{{ openondemand_auth_defaults[openondemand_auth | lower].httpd_auth }}"
104104

105-
# Use Ark pulp repos by default
105+
# Use repo file provided by dnf_repos by default
106106
ood_use_existing_repo_file: true
107107

108108
openondemand_code_server_version: 4.102.2

ansible/roles/openondemand/tasks/vnc_compute.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
---
22
# Should be run on compute nodes you want to run the graphical desktop on
3-
- name: Install EPEL
4-
tags: install
5-
ansible.builtin.dnf:
6-
name: epel-release
3+
4+
# EPEL and TurboVNC repos are provided by dnf_repos role
75

86
- name: Check /etc/init.d
97
ansible.builtin.stat:

environments/common/inventory/group_vars/all/dnf_repo_timestamps.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,3 +192,21 @@ dnf_repos_default:
192192
pulp_path: turbovnc/srpms
193193
pulp_timestamp: 20251009T091906
194194
repo_file: TurboVNC
195+
cernvmfs_pkgs:
196+
'8':
197+
path: cvmfs/EL/8/x86_64
198+
timestamp: 20250816T005446
199+
repo_file: cvmfs
200+
'9':
201+
path: cvmfs/EL/9/x86_64
202+
timestamp: 20250816T005446
203+
repo_file: cvmfs
204+
cernvmfs_cfg:
205+
'8':
206+
path: cvmfs-config/EL/8/x86_64
207+
timestamp: 20250805T130249
208+
repo_file: cvmfs
209+
'9':
210+
path: cvmfs-config/EL/9/x86_64
211+
timestamp: 20250805T130249
212+
repo_file: cvmfs

0 commit comments

Comments
 (0)