summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/setup_rpm_repo
diff options
context:
space:
mode:
authorMartin Krizek <martin.krizek@gmail.com>2024-03-08 09:43:42 +0100
committerGitHub <noreply@github.com>2024-03-08 09:43:42 +0100
commitf1ded0f41759235eb15a7d13dbc3c95dce5d5acd (patch)
tree3fa0ac6603d4c85d6e5c9711b23ebba2b0bdd464 /test/integration/targets/setup_rpm_repo
parentdnf: fix installing a package based the file it provides (#82744) (diff)
downloadansible-f1ded0f41759235eb15a7d13dbc3c95dce5d5acd.tar.xz
ansible-f1ded0f41759235eb15a7d13dbc3c95dce5d5acd.zip
dnf: utilize the API for the installed checks (#82725)
Fixes #71808 Fixes #76463 Fixes #81018
Diffstat (limited to 'test/integration/targets/setup_rpm_repo')
-rw-r--r--test/integration/targets/setup_rpm_repo/library/create_repo.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/integration/targets/setup_rpm_repo/library/create_repo.py b/test/integration/targets/setup_rpm_repo/library/create_repo.py
index 8ca4a82e4c..a07d8df657 100644
--- a/test/integration/targets/setup_rpm_repo/library/create_repo.py
+++ b/test/integration/targets/setup_rpm_repo/library/create_repo.py
@@ -49,6 +49,10 @@ SPECS = [
RPM('noarchfake', '1.0', '1', None, None, None, 'noarch'),
RPM('provides_foo_a', '1.0', '1', None, None, 'foo.so', 'noarch'),
RPM('provides_foo_b', '1.0', '1', None, None, 'foo.so', 'noarch'),
+ RPM('number-11-name', '11.0', '1', None, None, None, None),
+ RPM('number-11-name', '11.1', '1', None, None, None, None),
+ RPM('epochone', '1.0', '1', '1', None, None, "noarch"),
+ RPM('epochone', '1.1', '1', '1', None, None, "noarch"),
]