Skip to content

Commit

Permalink
Merge pull request #13 from cvmfs-contrib/20230614-fix-yum
Browse files Browse the repository at this point in the history
fix yum package list and meta info
  • Loading branch information
rptaylor authored Jun 14, 2023
2 parents 054e51c + 1120277 commit 8da0230
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions meta/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
galaxy_info:
role_name: cvmfs_client
namespace: compute_canada
author: Compute Canada CVMFS Team
description: CVMFS client role
company: Compute Canada
Expand Down
2 changes: 1 addition & 1 deletion molecule/default/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
- role: cvmfs_contrib.cvmfs_client
vars:
cvmfs_client_configure_storage: false
cvmfs_cache_size: "1000" # small cache size for CI
cvmfs_cache_size: "1500" # small cache size for CI
cvmfs_http_proxy: "DIRECT"
2 changes: 2 additions & 0 deletions molecule/default/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@ provisioner:
name: ansible
playbooks:
converge: converge.yml
options:
diff: True
2 changes: 1 addition & 1 deletion tasks/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

- name: Install CVMFS client and configuration packages
yum:
name: "['cvmfs'] + {{ cvmfs_auto_setup_package }} + {{ cvmfs_fuse3_package }} + {{ cvmfs_configuration }}"
name: "{{ ['cvmfs'] + cvmfs_auto_setup_package + cvmfs_fuse3_package + cvmfs_configuration }}"
vars:
cvmfs_auto_setup_package: "{{ ['cvmfs-auto-setup'] if cvmfs_auto_setup|bool else [] }}"
cvmfs_fuse3_package: "{{ ['cvmfs-fuse3'] if cvmfs_use_fuse3|bool else [] }}"

0 comments on commit 8da0230

Please sign in to comment.