Files
Ilia Ross e695fbd0c7 Add APT package hold management to Package Updates
- Add an APT-only “Held updates” view while keeping held packages excluded from normal and scheduled updates.

- Allow administrators to hold or unhold packages from package details.

- Allow explicitly selected held packages to be updated once, then restore all existing package holds.

- Preserve configured `aptitude` behavior for regular installs while using `apt-get` for the held-package override.

Fixes #2689
2026-08-14 03:43:50 +02:00

38 lines
909 B
Perl

# log_parser.pl
# Functions for parsing this module's logs
do 'package-updates-lib.pl';
# parse_webmin_log(user, script, action, type, object, &params)
# Converts logged information from this module into human-readable form
sub parse_webmin_log
{
my ($user, $script, $action, $type, $object, $p) = @_;
if ($type eq 'repos') {
return &text('log_'.$action.'_repos', $object);
}
elsif ($type eq 'repo') {
return &text('log_'.$action.'_repo',
"<tt>".&html_escape($object)."</tt>");
}
elsif ($action eq 'update') {
return &text('log_update', $object);
}
elsif ($action eq 'schedup') {
return &text('log_schedup', $object);
}
elsif ($action eq 'hold' || $action eq 'unhold') {
return &text('log_'.$action, $object);
}
elsif ($action eq 'sched') {
return $text{$object ? 'log_sched' : 'log_unsched'};
}
elsif ($action eq 'refresh') {
return $text{'log_refresh'};
}
else {
return undef;
}
}