mirror of
https://github.com/ansible/ansible.git
synced 2026-08-03 08:03:05 +02:00
dnf5: replace removed API calls (#83020)
* dnf5: replace removed API calls https://github.com/rpm-software-management/dnf5/commit/bfb6f32e15c359011e078c81b78d160ef10708dd https://github.com/rpm-software-management/dnf5/commit/96c9188f9c5b5a78aa550b9a15ed748e6f306e8d * call set_group_with_name instead of setting group_with_name https://github.com/rpm-software-management/dnf5/commit/c7b88428f314bebb4cfbb733c7c7bc6a42c2b666 --------- Co-authored-by: Matt Martz <matt@sivel.net>
This commit is contained in:
co-authored by
Matt Martz
parent
cb81801124
commit
4e57249d59
@@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- dnf5 - replace removed API calls
|
||||
@@ -496,7 +496,7 @@ class Dnf5Module(YumDnf):
|
||||
conf.config_file_path = self.conf_file
|
||||
|
||||
try:
|
||||
base.load_config_from_file()
|
||||
base.load_config()
|
||||
except RuntimeError as e:
|
||||
self.module.fail_json(
|
||||
msg=str(e),
|
||||
@@ -536,7 +536,8 @@ class Dnf5Module(YumDnf):
|
||||
log_router = base.get_logger()
|
||||
global_logger = libdnf5.logger.GlobalLogger()
|
||||
global_logger.set(log_router.get(), libdnf5.logger.Logger.Level_DEBUG)
|
||||
logger = libdnf5.logger.create_file_logger(base)
|
||||
# FIXME hardcoding the filename does not seem right, should libdnf5 expose the default file name?
|
||||
logger = libdnf5.logger.create_file_logger(base, "dnf5.log")
|
||||
log_router.add_logger(logger)
|
||||
|
||||
if self.update_cache:
|
||||
@@ -561,7 +562,7 @@ class Dnf5Module(YumDnf):
|
||||
for repo in repo_query:
|
||||
repo.enable()
|
||||
|
||||
sack.update_and_load_enabled_repos(True)
|
||||
sack.load_repos()
|
||||
|
||||
if self.update_cache and not self.names and not self.list:
|
||||
self.module.exit_json(
|
||||
@@ -593,7 +594,7 @@ class Dnf5Module(YumDnf):
|
||||
self.module.exit_json(msg="", results=results, rc=0)
|
||||
|
||||
settings = libdnf5.base.GoalJobSettings()
|
||||
settings.group_with_name = True
|
||||
settings.set_group_with_name(True)
|
||||
if self.bugfix or self.security:
|
||||
advisory_query = libdnf5.advisory.AdvisoryQuery(base)
|
||||
types = []
|
||||
|
||||
Reference in New Issue
Block a user