From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 1/3] mountfs: Mount ExtraHD filesystems Date: Tue, 15 Aug 2023 10:19:34 +0000 Message-ID: <20230815101936.261078-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5672117262786902376==" List-Id: --===============5672117262786902376== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Michael Tremer --- src/initscripts/system/mountfs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/initscripts/system/mountfs b/src/initscripts/system/mountfs index 81ed729c1..2e2ff0b5b 100644 --- a/src/initscripts/system/mountfs +++ b/src/initscripts/system/mountfs @@ -36,6 +36,11 @@ case "${1}" in boot_mesg "Mounting remaining file systems..." mount -a -O no_netdev &>/dev/null evaluate_retval + + # ExtraHD + boot_mesg "Mounting custom file systems..." + /var/ipfire/extrahd/bin/extrahd.pl mount + evaluate_retval ;; stop) @@ -45,6 +50,11 @@ case "${1}" in sync && sync evaluate_retval + # ExtraHD + boot_mesg "Unmounting custom file systems..." + /var/ipfire/extrahd/bin/extrahd.pl umount + evaluate_retval + boot_mesg "Unmounting all other currently mounted file systems..." umount -a -d -r &>/dev/null evaluate_retval -- 2.39.2 --===============5672117262786902376==--