Compare commits

...

4 Commits

Author SHA1 Message Date
c0c023f0d1 * Thu Sep 11 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-27.sme
- set stream for redis module to remi-7.2 [SME: 13138]
2025-09-11 15:02:00 -04:00
7078e2453d * Wed Aug 27 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-26.sme
- require yum exec for backward compatibility  [SME: 13102]
2025-08-27 15:17:14 -04:00
bb70c6cc07 * Wed May 28 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-25.sme
- MariaDB restart on update [SME: 13019]
2025-05-28 22:32:58 -04:00
23626f948f * Wed May 28 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-24.sme
- fix not all gpg keys are imported during dnf transaction [SME: 13010]
2025-05-28 00:09:12 -04:00
5 changed files with 23 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ for ( qw(install remove update) )
safe_symlink("restart", "root/etc/e-smith/events/dnf-modify/services2adjust/dnf");
for ( qw(bootstrap-console-save dnf-update smeserver-update-update) )
for ( qw(bootstrap-console-save dnf-update ) )
{
event_link("rpm-import-keys", $_, "10");
}

View File

@@ -45,3 +45,9 @@ stream=3.6
profiles=
state=enabled' | crudini --merge /etc/dnf/modules.d/python36.module
# set redis 7.2
printf '[redis]
name=redis
stream=remi-7.2
profiles=
state=enabled' | crudini --merge /etc/dnf/modules.d/redis.module

View File

@@ -50,6 +50,7 @@ servicenames['freeradius']='radiusd',
servicenames['httpd']='httpd-admin','httpd-e-smith',
servicenames['iptables']='masq',
servicenames['mariadb']='mariadb',
servicenames['MariaDB']='mariadb',
servicenames['nut']='nut',
servicenames['openldap']='ldap',
servicenames['openssh']='sshd',

View File

@@ -8,6 +8,7 @@ SyslogIdentifier=dnf_update_dbs
ExecStartPre=-/etc/e-smith/events/actions/dnf_modules
ExecStartPre=/sbin/e-smith/service-status dnf
ExecStart=/sbin/e-smith/dnf_update_dbs
ExecStartPost=/etc/e-smith/events/actions/rpm-import-keys
TimeoutSec=0
RemainAfterExit=yes

View File

@@ -2,7 +2,7 @@
Summary: Koozali SME Server rpm updater
Name: %{name}
%define version 11.0.0
%define release 23
%define release 27
Version: %{version}
Release: %{release}%{?dist}
License: GPL
@@ -11,6 +11,7 @@ Source: %{name}-%{version}.tar.xz
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
BuildArchitectures: noarch
Requires: yum >= 4.7.0
Provides: smeserver-yum
Obsoletes: smeserver-yum < %{version}-%{release}
Requires: smeserver-formmagick
@@ -69,6 +70,18 @@ mkdir -p root/etc/yum.smerepos.d
%changelog
* Thu Sep 11 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-27.sme
- set stream for redis module to remi-7.2 [SME: 13138]
* Wed Aug 27 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-26.sme
- require yum exec for backward compatibility [SME: 13102]
* Wed May 28 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-25.sme
- MariaDB restart on update [SME: 13019]
* Wed May 28 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-24.sme
- fix not all gpg keys are imported during dnf transaction [SME: 13010]
* Fri Mar 14 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-23.sme
- deactivate mariadb 10.5 module (do it on update) [SME: 12955]
- rewrite module setting to avoid failure [SME: 12962]