umount (a107ddbb83a7a93d3c4e40f5355e158d6976bf90) | umount (5b8d2467eb3af1f14c11c0249d7f046f75808a33) |
---|---|
1#!/bin/sh 2#- 3# Copyright (c) 2011 Nathan Whitehorn 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions 8# are met: --- 25 unchanged lines hidden (view full) --- 34 if (fsname == "/") 35 fsname = "" 36 printf("%s\t%s%s\t%s\t%s\t%s\t%s\n", $1, BSDINSTALL_CHROOT, 37 fsname, $3, $4, $5, $6); 38 } 39}' > $TMP_FSTAB 40 41umount $BSDINSTALL_CHROOT/dev 2>/dev/null | 1#!/bin/sh 2#- 3# Copyright (c) 2011 Nathan Whitehorn 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions 8# are met: --- 25 unchanged lines hidden (view full) --- 34 if (fsname == "/") 35 fsname = "" 36 printf("%s\t%s%s\t%s\t%s\t%s\t%s\n", $1, BSDINSTALL_CHROOT, 37 fsname, $3, $4, $5, $6); 38 } 39}' > $TMP_FSTAB 40 41umount $BSDINSTALL_CHROOT/dev 2>/dev/null |
42umount -F $TMP_FSTAB -a 2>/dev/null | 42if [ -n "$TMP_FSTAB" ]; then 43 umount -F $TMP_FSTAB -a 2>/dev/null 44fi |