This commit is contained in:
2024-03-25 17:44:36 -04:00
parent 91b6e8e13f
commit fc884e4629
187 changed files with 5039 additions and 130 deletions

View File

@@ -0,0 +1,67 @@
#!/usr/bin/perl -w
#----------------------------------------------------------------------
# Yum actions
# Copyright (C) 2005-2006 Gordon Rowell <gordonr@gormand.com.au>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License or more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#----------------------------------------------------------------------
use strict;
use warnings;
use esmith::ConfigDB;
use constant YUM_CMD => qw(/usr/bin/dnf -d 2 -e 2 -y);
my $db = esmith::ConfigDB->open or die "Couldn't open ConfigDB\n";
my $event = $ARGV[0];
my $function = $event;
$function =~ s/dnf-//;
die "Unknown function $function\n"
unless ($function =~ /install|update|remove/);
my $log_file = "/var/log/dnf/dnf.log." . time();
$db->set_prop('dnf', 'LogFile', $log_file);
open STDOUT, '>', "$log_file" or die "Can't redirect STDOUT: $!";
open STDERR, ">&STDOUT" or die "Can't dup STDOUT: $!";
# Make dnf send output immediately, so server-manager sees progress
$ENV{PYTHONUNBUFFERED} = 1;
# XXX - FIXME - For groupremove, we need to do a grouplist on the group
# and then work out what to do
my @groups = split(',',
($db->get_prop_and_delete('dnf', 'SelectedGroups') || ''));
my @packages = split(',',
($db->get_prop_and_delete('dnf', 'SelectedPackages') || ''));
if (@groups)
{
system(YUM_CMD, "group$function", @groups) == 0 or
die "dnf group$function @groups failed: $?\n";
}
if (@packages)
{
system(YUM_CMD, $function, @packages) == 0 or
die "dnf $function @packages failed: $?\n";
}
exit 0;

View File

@@ -0,0 +1,81 @@
#!/usr/bin/perl -w
#----------------------------------------------------------------------
# Yum import keys
# Copyright (C) 2005 Gordon Rowell <gordonr@gormand.com.au>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License or more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#----------------------------------------------------------------------
use strict;
use warnings;
use constant KEYDIR => "/usr/share/rpm-gpg-keys";
sub parse_key {
my @lines = @_;
my ($key, $good);
$good = 0;
foreach (@lines) {
chomp;
next if m#Version:#i;
if (m#BEGIN PGP PUBLIC KEY BLOCK#) {
$good++;
next;
}
if (m#END PGP PUBLIC KEY BLOCK#) {
$key .= $1 if (m/^(.+)-----END PGP PUBLIC KEY BLOCK/);
return $key;
}
$key .= $_ if m#^\S+$# && $good;
}
return undef;
}
my %keys;
if(open (RPMS, '/bin/rpm -q gpg-pubkey 2> /dev/null|')) {
foreach my $rpm (map { chomp; $_ } <RPMS>) {
if(open (KEY, "/bin/rpm -q --qf \%{DESCRIPTION} $rpm|")) {
my $key = parse_key(<KEY>);
$keys{$key}++ if $key;
close(KEY);
}
}
close (RPMS);
}
chdir KEYDIR or die "Couldn't chdir " . KEYDIR . "\n";
opendir DIR, '.' or die "Couldn't opendir .\n";
for my $file ( grep { m#^RPM-GPG-KEY# } readdir(DIR) )
{
if(open(KEY, "$file")) {
my $key = parse_key(<KEY>);
next if $key && $keys{$key};
}
warn "Importing key $file\n";
system("rpm", "--import", $file) == 0 or
warn "Couldn't rpm --import $file\n";
}
exit 0;