From: Michael Tremer Date: Tue, 15 Aug 2023 09:47:25 +0000 (+0000) Subject: mountfs: Mount ExtraHD filesystems X-Git-Tag: v2.27-core179~9^2~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=21d8c56c8a38d2622d13b0a60f14b6d41a5f355b;p=ipfire-2.x.git mountfs: Mount ExtraHD filesystems Signed-off-by: Michael Tremer --- diff --git a/src/initscripts/system/mountfs b/src/initscripts/system/mountfs index 81ed729c10..2e2ff0b5b6 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