From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arne Fitzenreiter 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 Message-ID: <20230605073029.2971-2-arne_f@ipfire.org> In-Reply-To: <20230605073029.2971-1-arne_f@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8777113131919692662==" List-Id: --===============8777113131919692662== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable 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 --- src/initscripts/system/partresize | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/initscripts/system/partresize b/src/initscripts/system/partr= esize 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=3D"on" + journal=3D"on" fi =20 mount /boot > /dev/null @@ -109,6 +110,18 @@ case "${1}" in root_dev=3D"${dev::-2}" fi =20 + # Check if the device support smart + smartctl --smart=3Don "${root_dev}" > /dev/null + if [ ${?} =3D 0 ]; then + journal=3D"on" + fi + + # Enable journal + if [ "${journal}" =3D "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 =20 --=20 2.38.1 --===============8777113131919692662==--