From: Arne Fitzenreiter <arne_f@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 2/2] partresize: enable journal on ssd's and vm's
Date: Mon, 05 Jun 2023 09:30:29 +0200 [thread overview]
Message-ID: <20230605073029.2971-2-arne_f@ipfire.org> (raw)
In-Reply-To: <20230605073029.2971-1-arne_f@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1384 bytes --]
the flashimage is build without journal to not destroy
usb thumbdrives or sd cards. On real ssd's and virtual
machines it should enabled for higher data security.
So this patch add the journal is drive support smart.
Signed-off-by: Arne Fitzenreiter <arne_f(a)ipfire.org>
---
src/initscripts/system/partresize | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/src/initscripts/system/partresize b/src/initscripts/system/partresize
index 832bc7237..df9c43991 100644
--- a/src/initscripts/system/partresize
+++ b/src/initscripts/system/partresize
@@ -48,6 +48,7 @@ case "${1}" in
# Azure and Google Compute Platform
if running_on_ec2 || running_on_oci || running_on_azure || running_on_gcp; then
scon="on"
+ journal="on"
fi
mount /boot > /dev/null
@@ -109,6 +110,18 @@ case "${1}" in
root_dev="${dev::-2}"
fi
+ # Check if the device support smart
+ smartctl --smart=on "${root_dev}" > /dev/null
+ if [ ${?} = 0 ]; then
+ journal="on"
+ fi
+
+ # Enable journal
+ if [ "${journal}" = "on" ]; then
+ boot_mesg "Create journal on "${dev}" ..."
+ tune2fs -O has_journal "${dev}"
+ fi
+
boot_mesg "Growing root partition to maximum size..."
echo -e ',+' | sfdisk --no-reread -f -N${part_num} "${root_dev}" 2>/dev/null
--
2.38.1
prev parent reply other threads:[~2023-06-05 7:30 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-05 7:30 [PATCH 1/2] partresize: remove buggy code Arne Fitzenreiter
2023-06-05 7:30 ` Arne Fitzenreiter [this message]
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=20230605073029.2971-2-arne_f@ipfire.org \
--to=arne_f@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