* Mon Mar 25 2024 Jean-Philippe Pialasse <jpp@koozali.org> 2.6.2-9.sme

- initial release of smeserver-update based on smeserver-yum
  * tidy centos repos, add rocky repos, add support for metalinks,
  tidy most references to yum (except manager), tidy config and templates
  * yum-cron moved to dnf-automatic,
  * rename yum_** esmith db, except yum_repositories
  * moved yum.conf to dnf.conf with deltarpm , fastestmirror support
  * add requirement for dnf post-transaction-actions
  * adapt setting for priorities
  * renamed yum.service to dnf.service
  * TODO smeserver.py plugin
This commit is contained in:
2024-03-25 22:42:14 -04:00
parent fc884e4629
commit c158b051fd
5 changed files with 24 additions and 20 deletions

View File

@@ -286,7 +286,7 @@ sub print_yum_status_page
my ($fm) = @_;
my @yum_status;
if (open(YUM_STATUS, "</var/run/yum.status")) {
if (open(YUM_STATUS, "</var/cache/dnf/dnf.status")) {
@yum_status = <YUM_STATUS>;
close(YUM_STATUS);
}