diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-08-01 16:58:59 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-08-01 16:58:59 -0400 |
commit | 9ed2952cf95f65092c932b09a7488bb4a02c4288 (patch) | |
tree | ee79939e1ac3eed734c054e8382424699c97037f | |
parent | 73531eb17a55349f7306f86c6fe2a453a25a5a17 (diff) | |
download | pfsense-9ed2952cf95f65092c932b09a7488bb4a02c4288.zip pfsense-9ed2952cf95f65092c932b09a7488bb4a02c4288.tar.gz |
Silence error as we do not use this
-rw-r--r-- | PCBSD/pc-sysinstall/backend/functions-unmount.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PCBSD/pc-sysinstall/backend/functions-unmount.sh b/PCBSD/pc-sysinstall/backend/functions-unmount.sh index abd2491..311bf88 100644 --- a/PCBSD/pc-sysinstall/backend/functions-unmount.sh +++ b/PCBSD/pc-sysinstall/backend/functions-unmount.sh @@ -155,7 +155,7 @@ unmount_all_filesystems_failure() # Last lets the /mnt partition ######################################################### - rc_nohalt "umount -f ${FSMNT}" + rc_nohalt "umount -f ${FSMNT} 2>/dev/null" fi else @@ -168,7 +168,7 @@ unmount_all_filesystems_failure() fi # Unmount our CDMNT - rc_nohalt "umount ${CDMNT}" + rc_nohalt "umount ${CDMNT} 2>/dev/null" # Import any pools, so they are active at shutdown and ready to boot potentially zpool import -a |