mirror of
https://github.com/webmin/webmin.git
synced 2026-02-08 08:19:57 +00:00
Compare commits
1 Commits
dev/fix-ho
...
dev/final-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
160c7e4dd0 |
@@ -1,12 +1,7 @@
|
||||
## Changelog
|
||||
|
||||
#### 2.102 (August 23, 2023)
|
||||
#### 2.102 (August, 2023)
|
||||
* Add support for Amazon Linux 2023
|
||||
* Fix a bug in Network Configuration module when parsing network size [sourceforge.net/discussion#55377]( https://sourceforge.net/p/webadmin/discussion/55377/thread/78e5aa05f3)
|
||||
* Fix Netplan related bugs in Network Configuration module
|
||||
* Fix Terminal focus bug
|
||||
* Fix to correctly compare Webmin semantic versions
|
||||
* Fix to suppress output from `monitor.pl` command [#1984](https://github.com/webmin/webmin/issues/1984)
|
||||
|
||||
#### 2.101 (August 5, 2023)
|
||||
* Add support for reading gzipped email messages
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
# Returns a list of files and directories under some directory
|
||||
|
||||
$trust_unknown_referers = 1;
|
||||
require './bacula-backup-lib.pl';
|
||||
BEGIN { require './bacula-backup-lib.pl'; }
|
||||
&ReadParse();
|
||||
|
||||
# Input sanitization
|
||||
|
||||
@@ -501,7 +501,18 @@ return $? ? $out : undef;
|
||||
sub get_config_files
|
||||
{
|
||||
my $conf_dir = $config{'config_dir'} || '/etc/firewalld';
|
||||
return (glob("$conf_dir/*.xml"), glob("$conf_dir/*/*.xml"));
|
||||
my @conf_files;
|
||||
my @dirpath = ($conf_dir);
|
||||
eval "use File::Find;";
|
||||
if (!$@) {
|
||||
find(sub {
|
||||
my $file = $File::Find::name;
|
||||
push(@conf_files, $file)
|
||||
if (-f $file && $file =~ /\.(conf|xml)$/);
|
||||
}, @dirpath);
|
||||
}
|
||||
push(@conf_files, "$conf_dir/direct.xml");
|
||||
return @conf_files;
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
@@ -458,6 +458,7 @@ foreach my $deb ("deb", "newkey/deb") {
|
||||
# Run the actual build command
|
||||
system("fakeroot dpkg --build $tmp_dir $deb/${product}_${ver}${rel}_all.deb") &&
|
||||
die "dpkg failed";
|
||||
#system("rm -rf $tmp_dir");
|
||||
print "Wrote $deb/${product}_${ver}${rel}_all.deb\n";
|
||||
$md5 = `md5sum $tarfile`;
|
||||
$md5 =~ s/\s+.*\n//g;
|
||||
@@ -520,8 +521,6 @@ EOF
|
||||
unlink("sigs/${product}_${ver}${rel}_all.deb-sig.asc");
|
||||
system("gpg --armor --output sigs/${product}_${ver}${rel}_all.deb-sig.asc --default-key $key --detach-sig $deb/${product}_${ver}${rel}_all.deb");
|
||||
print "Wrote sigs/${product}_${ver}${rel}_all.deb-sig.asc\n";
|
||||
|
||||
system("rm -rf $diff_orig_dir $diff_new_dir");
|
||||
}
|
||||
|
||||
# read_file(file, &assoc, [&order], [lowercase])
|
||||
|
||||
@@ -1450,10 +1450,7 @@ alarm(0);
|
||||
# If a remote IP is given in a header (such as via a proxy), only use it
|
||||
# for logging unless trust_real_ip is set
|
||||
local $headerhost = $header{'x-forwarded-for'} ||
|
||||
$header{'x-real-ip'} ||
|
||||
$header{'true-client-ip'} ||
|
||||
$header{'cf-connecting-ip'} ||
|
||||
$header{'cf-connecting-ip6'};
|
||||
$header{'x-real-ip'};
|
||||
if ($headerhost) {
|
||||
# Only real IPs are allowed
|
||||
$headerhost = undef if (!&check_ipaddress($headerhost) &&
|
||||
|
||||
@@ -525,7 +525,7 @@ return &has_command("ifup") &&
|
||||
$gconfig{'os_version'} >= 5 ||
|
||||
$gconfig{'os_type'} eq 'redhat-linux' &&
|
||||
$gconfig{'os_version'} >= 13) &&
|
||||
($iface->{'name'} !~ /^(eth|em|eno|ens|enp|enx|enX|lo|br)/ ||
|
||||
($iface->{'name'} !~ /^(eth|em|eno|ens|enp|enx|lo|br)/ ||
|
||||
$iface->{'name'} =~ /^(\S+)\.(\d+)/) &&
|
||||
$iface->{'virtual'} eq '';
|
||||
}
|
||||
@@ -541,7 +541,7 @@ if ($name =~ /^(.*)\.(\d+)$/) {
|
||||
return "PPP" if ($name =~ /^ppp/);
|
||||
return "SLIP" if ($name =~ /^sl/);
|
||||
return "PLIP" if ($name =~ /^plip/);
|
||||
return "Ethernet" if ($name =~ /^eth|em|eno|ens|enp|enx|enX|p\d+p\d+|vtnet/);
|
||||
return "Ethernet" if ($name =~ /^eth|em|eno|ens|enp|enx|p\d+p\d+|vtnet/);
|
||||
return "Wireless Ethernet" if ($name =~ /^(wlan|ath)/);
|
||||
return "Arcnet" if ($name =~ /^arc/);
|
||||
return "Token Ring" if ($name =~ /^tr/);
|
||||
@@ -803,7 +803,7 @@ return $? ? $out : undef;
|
||||
# Does some interface have an editable hardware address
|
||||
sub iface_hardware
|
||||
{
|
||||
return $_[0] =~ /^(eth|em|eno|ens|enp|enx|enX)/;
|
||||
return $_[0] =~ /^(eth|em|eno|ens|enp|enx)/;
|
||||
}
|
||||
|
||||
# allow_interface_clash()
|
||||
|
||||
@@ -166,7 +166,7 @@ deb)
|
||||
echo " .. done"
|
||||
# Create repo file
|
||||
echo " Setting up Webmin repository .."
|
||||
echo "deb [signed-by=/usr/share/keyrings/$repoid_debian_like-$webmin_key_suffix.gpg] $webmin_download/download/newkey/repository stable contrib" >$debian_repo_file
|
||||
echo "deb [signed-by=/usr/share/keyrings/$repoid_debian_like-$webmin_key_suffix.gpg] $webmin_download/download/repo webmin main" >$debian_repo_file
|
||||
echo " .. done"
|
||||
# Clean meta
|
||||
echo " Cleaning repository metadata .."
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1698,9 +1698,7 @@ $err_caller = "$stack[1]->[1] (line $stack[1]->[2])"
|
||||
if ($stack[1]->[1] && $stack[1]->[2]);
|
||||
if ($err_caller) {
|
||||
$err_caller =~ s/$root_directory\///;
|
||||
my $err_caller_ =
|
||||
$main::webmin_script_type =~ /^(cmd|cron)$/ ?
|
||||
$err_caller : &ui_help($err_caller);
|
||||
my $err_caller_ = &ui_help($err_caller);
|
||||
$msg = $msg ? "$msg $err_caller_" : $err_caller_;
|
||||
push(@msg, $err_caller_);
|
||||
}
|
||||
@@ -4329,8 +4327,8 @@ if (!$main::get_system_hostname[$m]) {
|
||||
if ($fromfile && ($m || $fromfile =~ /\./)) {
|
||||
if ($m) {
|
||||
$fromfile =~ s/\..*$//;
|
||||
$main::get_system_hostname[$m] = $fromfile;
|
||||
}
|
||||
$main::get_system_hostname[$m] = $fromfile;
|
||||
return $fromfile;
|
||||
}
|
||||
|
||||
|
||||
@@ -44,8 +44,8 @@ foreach my $repo ($webmin_apt_repo_file, $global_apt_repo_file) {
|
||||
}
|
||||
};
|
||||
foreach my $l (@$lref) {
|
||||
if ($l =~ /^\s*deb\s+.*?((http|https):\/\/download.webmin.com\/download\/repository)\s+sarge\s+contrib/) {
|
||||
$l = &$lreffix("deb [signed-by=$webmin_apt_repo_key] $webmin_apt_repo_url stable contrib");
|
||||
if ($l =~ /^\s*deb\s+.*?((http|https):\/\/download.webmin.com\/download\/(repository|newkey\/repository))\s+(sarge|stable)\s+contrib/) {
|
||||
$l = &$lreffix("deb [signed-by=$webmin_apt_repo_key] $webmin_apt_repo_url webmin main");
|
||||
$fixed++;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1014,7 +1014,7 @@ notif_updateok=Install Updates Now
|
||||
notif_reboot=Recent package updates (such as a new kernel version) require a reboot to be fully applied.
|
||||
notif_rebootok=Reboot Now
|
||||
notify_yumrepo=Your system is using the old Webmin repository. Click the button below to switch to the new repository URL <tt>$1</tt> in order to use our latest signing key and ensure access to updated Webmin versions.
|
||||
notify_aptrepo=Your system is using the old Webmin repository. Click the button below to switch to the new <tt>stable</tt> repository URL <tt>$1</tt> in order to use our latest signing key and ensure access to updated Webmin versions.
|
||||
notify_aptrepo_newkey=Your system is using obsolete Webmin repository. Please click the button below to switch to the new <tt>webmin main</tt> repository URL <tt>$1</tt> in order to use our latest signing key and ensure access to updated Webmin versions.
|
||||
notif_fixreponow=Update Webmin Repository
|
||||
|
||||
status_title=Background Status Collection
|
||||
|
||||
@@ -67,8 +67,10 @@ our $webmin_yum_repo_mirrorlist = $webmin_yum_repo_url."/mirrorlist";
|
||||
our $webmin_yum_repo_key = "/etc/pki/rpm-gpg/RPM-GPG-KEY-webmin-developers";
|
||||
|
||||
our $webmin_apt_repo_file = "/etc/apt/sources.list.d/webmin.list";
|
||||
our $webmin_apt_repo_url = "https://download.webmin.com/download/newkey/repository";
|
||||
our $webmin_apt_repo_url = "https://download.webmin.com/download/repo";
|
||||
our $webmin_apt_repo_key = "/usr/share/keyrings/debian-webmin-developers.gpg";
|
||||
$webmin_apt_repo_key = "/usr/share/keyrings/ubuntu-webmin-developers.gpg"
|
||||
if ($gconfig{'real_os_type'} =~ /ubuntu/i);
|
||||
our $global_apt_repo_file = "/etc/apt/sources.list";
|
||||
|
||||
# Obsolete, but still defined so it can be deleted
|
||||
@@ -1340,9 +1342,8 @@ foreach my $repo ($webmin_apt_repo_file, $global_apt_repo_file) {
|
||||
next if (!-r $repo);
|
||||
my $lref = &read_file_lines($repo, 1);
|
||||
foreach my $l (@$lref) {
|
||||
if ($l =~ /^\s*deb\s+.*?((http|https):\/\/download.webmin.com\/download\/repository)\s+sarge\s+contrib/) {
|
||||
$repoerr = &text('notify_aptrepo',
|
||||
$webmin_apt_repo_url);
|
||||
if ($l =~ /^\s*deb\s+.*?((http|https):\/\/download.webmin.com\/download\/(repository|newkey\/repository))\s+(sarge|stable)\s+contrib/) {
|
||||
$repoerr = &text('notify_aptrepo_newkey', $webmin_apt_repo_url);
|
||||
last;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user