File tree Expand file tree Collapse file tree 6 files changed +13
-11
lines changed
pbench_agent_install/tasks
templates/etc/yum.repos.d Expand file tree Collapse file tree 6 files changed +13
-11
lines changed Original file line number Diff line number Diff line change 11---
22skip_list :
3- - experimental # all rules tagged as experimental
4- - no-changed-when # Commands should not change things if nothing needs doing.
3+ - experimental # all rules tagged as experimental
4+ - no-changed-when # Commands should not change things if nothing needs doing.
5+ - package-latest # Do not complain about using `latest'
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ namespace: pbench
1010name : agent
1111
1212# The version of the collection. Must be compatible with semantic versioning
13- version : 1.0.7
13+ version : 1.0.11
1414
1515# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
1616readme : README.md
Original file line number Diff line number Diff line change 55
66- name : Install RPMs
77 ansible.builtin.package :
8- name : " {{ item }} "
9- with_items :
10- - pbench-agent
11- - pbench-sysstat
8+ name :
9+ - pbench-agent
10+ - pbench-sysstat
11+ state : latest
Original file line number Diff line number Diff line change 1717
1818 - tag : " {{ pbench_aux_repo_name }}"
1919 user : " {{ fedoraproject_username }}"
20- baseurl : " {{ pbench_repo_url_prefix }}/{{ pbench_aux_repo_name }}/{{distrodir}}"
20+ baseurl : " {{ pbench_repo_url_prefix }}/{{ pbench_aux_repo_name }}/{{ distrodir }}"
2121 gpgkey : " {{ pbench_repo_url_prefix }}/{{ pbench_aux_repo_name }}/pubkey.gpg"
2222 gpgcheck : 1
2323 enabled : " {{ enable_copr_aux_repo }}"
Original file line number Diff line number Diff line change 11---
22# Install pbench.repo
33- name : Assert pbench_repo_name is defined
4- assert :
4+ ansible.builtin. assert :
55 that :
66 - pbench_repo_name is defined
77 fail_msg : " Please specify the COPR repository name to use in the `pbench_repo_name` variable"
8+ quiet : true
89
910- name : Ensure we have the pbench.repo file properly in place
1011 ansible.builtin.template :
Original file line number Diff line number Diff line change 11{% for repo in repos %}
22
3- [copr-{{ repo.name }}-{{ repo.user }}]
4- name=COPR {{ repo.name }} ({{ repo.user }}) repo
3+ [copr-{{ repo.tag }}-{{ repo.user }}]
4+ name=COPR {{ repo.tag }} ({{ repo.user }}) repo
55baseurl={{ repo.baseurl }}
66gpgcheck={{ repo.gpgcheck }}
77gpgkey={{ repo.gpgkey }}
You can’t perform that action at this time.
0 commit comments