generated from smedev/Template-for-SMEServer-Core-Package
* Sat Dec 21 2024 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-17.sme
- set our prefered modules on different events and dnf.service run [SME: 12618] - update old manager to use dnf key instead of yum for settings [SME: 12831] - clean rocky yum_repositories property Name content [SME: 12806]
This commit is contained in:
parent
5f44cf7d38
commit
64597f4c33
@ -24,6 +24,11 @@ for ( qw(bootstrap-console-save dnf-update smeserver-update-update) )
|
|||||||
event_link("rpm-import-keys", $_, "10");
|
event_link("rpm-import-keys", $_, "10");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for ( qw(post-install post-upgrade console-save))
|
||||||
|
{
|
||||||
|
event_link("dnf_modules", $_, "70");
|
||||||
|
}
|
||||||
|
|
||||||
my $event= "smeserver-update-update";
|
my $event= "smeserver-update-update";
|
||||||
# systemd-specific action mandatory for this package-update event
|
# systemd-specific action mandatory for this package-update event
|
||||||
event_link("systemd-reload", $event, "89");
|
event_link("systemd-reload", $event, "89");
|
||||||
@ -31,8 +36,6 @@ event_link("systemd-default", $event, "88");
|
|||||||
templates2events("/etc/rsyslog.conf",$event);
|
templates2events("/etc/rsyslog.conf",$event);
|
||||||
safe_symlink("restart", "root/etc/e-smith/events/$event/services2adjust/rsyslog");
|
safe_symlink("restart", "root/etc/e-smith/events/$event/services2adjust/rsyslog");
|
||||||
|
|
||||||
event_link("dnf_modules", 'post-install', "70");
|
|
||||||
|
|
||||||
#--------------------------------------------------
|
#--------------------------------------------------
|
||||||
# functions for manager panel
|
# functions for manager panel
|
||||||
#--------------------------------------------------
|
#--------------------------------------------------
|
||||||
|
@ -1 +1 @@
|
|||||||
Rocky Linux $releasever - AppStream
|
Rocky Linux - AppStream
|
||||||
|
@ -1 +1 @@
|
|||||||
Rocky Linux $releasever - BaseOS
|
Rocky Linux - BaseOS
|
||||||
|
@ -1 +1 @@
|
|||||||
Rocky Linux $releasever - Extras
|
Rocky Linux - Extras
|
||||||
|
@ -1 +1 @@
|
|||||||
Rocky Linux $releasever - PowerTools
|
Rocky Linux - PowerTools
|
||||||
|
@ -5,6 +5,7 @@ After=network-pre.target networking.service
|
|||||||
[Service]
|
[Service]
|
||||||
Type=forking
|
Type=forking
|
||||||
SyslogIdentifier=dnf_update_dbs
|
SyslogIdentifier=dnf_update_dbs
|
||||||
|
ExecStartPre=-/etc/e-smith/events/actions/dnf_modules
|
||||||
ExecStartPre=/sbin/e-smith/service-status dnf
|
ExecStartPre=/sbin/e-smith/service-status dnf
|
||||||
ExecStart=/sbin/e-smith/dnf_update_dbs
|
ExecStart=/sbin/e-smith/dnf_update_dbs
|
||||||
TimeoutSec=0
|
TimeoutSec=0
|
||||||
|
@ -180,7 +180,7 @@ sub get_status
|
|||||||
{
|
{
|
||||||
my ($fm, $prop, $localise) = @_;
|
my ($fm, $prop, $localise) = @_;
|
||||||
|
|
||||||
my $status = $db->get_prop("yum", $prop) || 'disabled';
|
my $status = $db->get_prop("dnf", $prop) || 'disabled';
|
||||||
|
|
||||||
return $status unless $localise;
|
return $status unless $localise;
|
||||||
|
|
||||||
@ -196,7 +196,7 @@ sub change_settings
|
|||||||
PackageFunctions
|
PackageFunctions
|
||||||
) )
|
) )
|
||||||
{
|
{
|
||||||
$db->set_prop('yum', $param, $q->param("yum_$param"));
|
$db->set_prop('dnf', $param, $q->param("yum_$param"));
|
||||||
}
|
}
|
||||||
|
|
||||||
my $check4updates = $q->param("yum_check4updates");
|
my $check4updates = $q->param("yum_check4updates");
|
||||||
@ -204,21 +204,21 @@ sub change_settings
|
|||||||
|
|
||||||
if ($check4updates ne 'disabled') { $status = 'enabled'; }
|
if ($check4updates ne 'disabled') { $status = 'enabled'; }
|
||||||
|
|
||||||
$db->set_prop('yum', 'check4updates', $check4updates);
|
$db->set_prop('dnf', 'check4updates', $check4updates);
|
||||||
|
|
||||||
my $deltarpm = $q->param("yum_DeltaRpmProcess");
|
my $deltarpm = $q->param("yum_DeltaRpmProcess");
|
||||||
$db->set_prop('yum', 'DeltaRpmProcess', $deltarpm);
|
$db->set_prop('dnf', 'DeltaRpmProcess', $deltarpm);
|
||||||
|
|
||||||
my $downloadonly = $q->param("yum_DownloadOnly");
|
my $downloadonly = $q->param("yum_DownloadOnly");
|
||||||
if ($downloadonly ne 'disabled') { $status = 'enabled'; }
|
if ($downloadonly ne 'disabled') { $status = 'enabled'; }
|
||||||
|
|
||||||
$db->set_prop('yum', 'DownloadOnly', $downloadonly);
|
$db->set_prop('dnf', 'DownloadOnly', $downloadonly);
|
||||||
|
|
||||||
my $AutoInstallUpdates = $q->param("yum_AutoInstallUpdates");
|
my $AutoInstallUpdates = $q->param("yum_AutoInstallUpdates");
|
||||||
if ($AutoInstallUpdates ne 'disabled') { $status = 'enabled'; }
|
if ($AutoInstallUpdates ne 'disabled') { $status = 'enabled'; }
|
||||||
|
|
||||||
$db->set_prop('yum', 'AutoInstallUpdates', $AutoInstallUpdates);
|
$db->set_prop('dnf', 'AutoInstallUpdates', $AutoInstallUpdates);
|
||||||
$db->set_prop('yum', 'status', $status);
|
$db->set_prop('dnf', 'status', $status);
|
||||||
|
|
||||||
my %selected = map {$_ => 1} $q->param('SelectedRepositories');
|
my %selected = map {$_ => 1} $q->param('SelectedRepositories');
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
Summary: Koozali SME Server rpm updater
|
Summary: Koozali SME Server rpm updater
|
||||||
Name: %{name}
|
Name: %{name}
|
||||||
%define version 11.0.0
|
%define version 11.0.0
|
||||||
%define release 16
|
%define release 17
|
||||||
Version: %{version}
|
Version: %{version}
|
||||||
Release: %{release}%{?dist}
|
Release: %{release}%{?dist}
|
||||||
License: GPL
|
License: GPL
|
||||||
@ -68,6 +68,11 @@ mkdir -p root/etc/yum.smerepos.d
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Dec 21 2024 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-17.sme
|
||||||
|
- set our prefered modules on different events and dnf.service run [SME: 12618]
|
||||||
|
- update old manager to use dnf key instead of yum for settings [SME: 12831]
|
||||||
|
- clean rocky yum_repositories property Name content [SME: 12806]
|
||||||
|
|
||||||
* Sat Nov 30 2024 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-16.sme
|
* Sat Nov 30 2024 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-16.sme
|
||||||
- remove smeupdates and add smecontribs-testing [SME: 12804]
|
- remove smeupdates and add smecontribs-testing [SME: 12804]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user