public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Matthias Fischer <matthias.fischer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: Core 151 testing feedback
Date: Sun, 11 Oct 2020 18:29:43 +0200	[thread overview]
Message-ID: <b31992d1-0543-a994-95bf-a631a34e5a74@ipfire.org> (raw)
In-Reply-To: <7615af6c8e1c2e4137ba71860b38d92b5058c44d.camel@ipfire.org>

[-- Attachment #1: Type: text/plain, Size: 828 bytes --]

Hi,

[unneeded stuff deleted]

On 11.10.2020 13:57, ummeegge wrote:

> ...
>> The only thing: I'm not quite sure how to integrate a fix deleting
>> the old directory and file(s) under consideration of the respective client
>> architecture.
> May i am terribly unright but shouldn´t a wildcard solve this 
> /usr/lib/perl5/site_perl/5.30.0/*/Net/DNS
> 

*Sigh* You're right. I'm in the need of holidays...

Wrote patch. Tested. Works. Please confirm.

=> https://bugzilla.ipfire.org/show_bug.cgi?id=12491#c9

I also added it here. Please find attached an updated 'update.sh' plus a
proposed patch for Core 151 for .../config/rootfiles/core/151'.

I didn't want to push this to the 'master' branch and something like
https://git.ipfire.org/?p=ipfire-2.x.git;a=shortlog;h=refs/heads/core151
doesn't exist yet.

Best,
Matthias





[-- Attachment #2: update.sh --]
[-- Type: text/plain, Size: 2812 bytes --]

#!/bin/bash
############################################################################
#                                                                          #
# This file is part of the IPFire Firewall.                                #
#                                                                          #
# IPFire 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 3 of the License, or        #
# (at your option) any later version.                                      #
#                                                                          #
# IPFire 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 for more details.                             #
#                                                                          #
# You should have received a copy of the GNU General Public License        #
# along with IPFire; if not, write to the Free Software                    #
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA #
#                                                                          #
# Copyright (C) 2020 IPFire-Team <info@ipfire.org>.                        #
#                                                                          #
############################################################################
#
. /opt/pakfire/lib/functions.sh
/usr/local/bin/backupctrl exclude >/dev/null 2>&1

core=151

# Remove old core updates from pakfire cache to save space...
for (( i=1; i<=$core; i++ )); do
	rm -f /var/cache/pakfire/core-upgrade-*-$i.ipfire
done

# Remove files
rm -rfv \
	/usr/lib/perl5/site_perl/5.30.0/Locale
rm -rfv \
	/usr/lib/perl5/site_perl/5.30.0/*/Net/DNS
rm -fv \
	/usr/lib/perl5/site_perl/5.30.0/*/Net/DNS.pm

# Stop services
/etc/init.d/ipsec stop

# Extract files
extract_files

# update linker config
ldconfig

# Update Language cache
/usr/local/bin/update-lang-cache

# Filesytem cleanup
/usr/local/bin/filesystem-cleanup

# Apply local configuration to sshd_config
/usr/local/bin/sshctrl

# Start services
/etc/init.d/sshd restart
if grep -q "ENABLED=on" /var/ipfire/vpn/settings; then
	/etc/init.d/ipsec start
fi
/etc/init.d/collectd restart

# Reload sysctl.conf
sysctl -p

# This update needs a reboot...
#touch /var/run/need_reboot

# Finish
/etc/init.d/fireinfo start
sendprofile

# Update grub config to display new core version
if [ -e /boot/grub/grub.cfg ]; then
	grub-mkconfig -o /boot/grub/grub.cfg
fi

sync

# Don't report the exitcode last command
exit 0

[-- Attachment #3: core151_fix_for_net-dns_problem.patch --]
[-- Type: text/plain, Size: 452 bytes --]

diff --git a/config/rootfiles/core/151/update.sh b/config/rootfiles/core/151/update.sh
index 699528274..fa7e3a3bf 100644
--- a/config/rootfiles/core/151/update.sh
+++ b/config/rootfiles/core/151/update.sh
@@ -34,6 +34,10 @@ done
 # Remove files
 rm -rfv \
 	/usr/lib/perl5/site_perl/5.30.0/Locale
+rm -rfv \
+	/usr/lib/perl5/site_perl/5.30.0/*/Net/DNS
+rm -fv \
+	/usr/lib/perl5/site_perl/5.30.0/*/Net/DNS.pm
 
 # Stop services
 /etc/init.d/ipsec stop

  reply	other threads:[~2020-10-11 16:29 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-09 11:46 ummeegge
2020-10-09 14:26 ` Michael Tremer
2020-10-09 20:56   ` ummeegge
2020-10-10 11:52     ` Michael Tremer
2020-10-11  5:27       ` ummeegge
2020-10-11  7:52         ` ummeegge
2020-10-11  8:00           ` Matthias Fischer
2020-10-11 11:57             ` ummeegge
2020-10-11 16:29               ` Matthias Fischer [this message]
2020-10-09 19:31 ` Peter Müller
2020-10-11 11:18   ` Adolf Belka
2020-10-11 11:58     ` Adolf Belka
2020-10-11 11:29 Core 151 Testing feedback Adolf Belka
2020-10-12 10:14 ` Michael Tremer
2020-10-12 11:14   ` Adolf Belka
2020-10-12 13:10     ` Michael Tremer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b31992d1-0543-a994-95bf-a631a34e5a74@ipfire.org \
    --to=matthias.fischer@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox