Skip to content

fix yum package list and meta info #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 [] }}"