* [git.ipfire.org] IPFire 2.x development tree branch, next, updated. 889d63257973ebe96e36cbc275a05bbebaeaee9e
@ 2026-01-20 15:09 Michael Tremer
0 siblings, 0 replies; only message in thread
From: Michael Tremer @ 2026-01-20 15:09 UTC (permalink / raw)
To: ipfire-scm
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "IPFire 2.x development tree".
The branch, next has been updated
via 889d63257973ebe96e36cbc275a05bbebaeaee9e (commit)
from bfb265532e181cb6120c1baf1a3a738cd768dc41 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 889d63257973ebe96e36cbc275a05bbebaeaee9e
Author: Michael Tremer <michael.tremer@ipfire.org>
Date: Tue Jan 20 15:08:38 2026 +0000
core200: Fix shell syntax error in update script
Reported-by: Adam Gibbons <ag@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
-----------------------------------------------------------------------
Summary of changes:
config/rootfiles/core/200/update.sh | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
Difference in files:
diff --git a/config/rootfiles/core/200/update.sh b/config/rootfiles/core/200/update.sh
index 59993b195..cf5ca344a 100644
--- a/config/rootfiles/core/200/update.sh
+++ b/config/rootfiles/core/200/update.sh
@@ -72,8 +72,9 @@ if [ $BOOTSIZE -lt 100000 ]; then
fi
# Check if reiser filesystem is used
-if [ `/bin/grep -c "reiserfs" /proc/self/mounts` > 0 ]; then
+if grep -q "reiserfs" /proc/self/mounts; then
exit_with_error "ERROR cannot update because reiserfs no longer supported by kernel." 4
+fi
# Remove the old kernel
rm -rvf \
hooks/post-receive
--
IPFire 2.x development tree
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2026-01-20 15:09 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-01-20 15:09 [git.ipfire.org] IPFire 2.x development tree branch, next, updated. 889d63257973ebe96e36cbc275a05bbebaeaee9e Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox