From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: Re: [PATCHv2 1/4] initscripts: Add generic function to get the filesystem type of a volume Date: Thu, 28 Mar 2024 10:31:41 +0000 Message-ID: <37C3F719-C8B2-4927-98A6-30209A170BD6@ipfire.org> In-Reply-To: <20240327193920.14311-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8144027409391723593==" List-Id: --===============8144027409391723593== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Reviewed-by: Michael Tremer > On 27 Mar 2024, at 19:39, Stefan Schantl wrot= e: >=20 > Signed-off-by: Stefan Schantl > --- > src/initscripts/system/functions | 8 ++++++++ > 1 file changed, 8 insertions(+) >=20 > diff --git a/src/initscripts/system/functions b/src/initscripts/system/func= tions > index 5a26aef45..b610143ab 100644 > --- a/src/initscripts/system/functions > +++ b/src/initscripts/system/functions > @@ -883,3 +883,11 @@ running_on_oci() { > # We are not running on OCI > return 1 > } > + > +volume_fs_type() { > + if [ ! -d "${1}" ]; then > + return > + fi > + > + stat -f --format=3D"%T" ${1} > +} > --=20 > 2.39.2 >=20 --===============8144027409391723593==--