Fix indentation for diff reduction with commits to follow.

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Glen Barber 2014-04-25 19:43:18 +00:00
parent 2ded1ea292
commit a29123a849
2 changed files with 22 additions and 22 deletions

View File

@ -14,32 +14,32 @@ PATH=/bin:/usr/bin:/sbin:/usr/sbin
export PATH export PATH
if [ $# -ne 2 ]; then if [ $# -ne 2 ]; then
echo "make-memstick.sh /path/to/directory /path/to/image/file" echo "make-memstick.sh /path/to/directory /path/to/image/file"
exit 1 exit 1
fi fi
if [ ! -d ${1} ]; then if [ ! -d ${1} ]; then
echo "${1} must be a directory" echo "${1} must be a directory"
exit 1 exit 1
fi fi
if [ -e ${2} ]; then if [ -e ${2} ]; then
echo "won't overwrite ${2}" echo "won't overwrite ${2}"
exit 1 exit 1
fi fi
echo '/dev/ufs/FreeBSD_Install / ufs ro,noatime 1 1' > ${1}/etc/fstab echo '/dev/ufs/FreeBSD_Install / ufs ro,noatime 1 1' > ${1}/etc/fstab
makefs -B little -o label=FreeBSD_Install ${2} ${1} makefs -B little -o label=FreeBSD_Install ${2} ${1}
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "makefs failed" echo "makefs failed"
exit 1 exit 1
fi fi
rm ${1}/etc/fstab rm ${1}/etc/fstab
unit=`mdconfig -a -t vnode -f ${2}` unit=$(mdconfig -a -t vnode -f ${2})
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "mdconfig failed" echo "mdconfig failed"
exit 1 exit 1
fi fi
gpart create -s BSD ${unit} gpart create -s BSD ${unit}
gpart bootcode -b ${1}/boot/boot ${unit} gpart bootcode -b ${1}/boot/boot ${unit}

View File

@ -14,32 +14,32 @@ PATH=/bin:/usr/bin:/sbin:/usr/sbin
export PATH export PATH
if [ $# -ne 2 ]; then if [ $# -ne 2 ]; then
echo "make-memstick.sh /path/to/directory /path/to/image/file" echo "make-memstick.sh /path/to/directory /path/to/image/file"
exit 1 exit 1
fi fi
if [ ! -d ${1} ]; then if [ ! -d ${1} ]; then
echo "${1} must be a directory" echo "${1} must be a directory"
exit 1 exit 1
fi fi
if [ -e ${2} ]; then if [ -e ${2} ]; then
echo "won't overwrite ${2}" echo "won't overwrite ${2}"
exit 1 exit 1
fi fi
echo '/dev/ufs/FreeBSD_Install / ufs ro,noatime 1 1' > ${1}/etc/fstab echo '/dev/ufs/FreeBSD_Install / ufs ro,noatime 1 1' > ${1}/etc/fstab
makefs -B little -o label=FreeBSD_Install ${2} ${1} makefs -B little -o label=FreeBSD_Install ${2} ${1}
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "makefs failed" echo "makefs failed"
exit 1 exit 1
fi fi
rm ${1}/etc/fstab rm ${1}/etc/fstab
unit=`mdconfig -a -t vnode -f ${2}` unit=$(mdconfig -a -t vnode -f ${2})
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "mdconfig failed" echo "mdconfig failed"
exit 1 exit 1
fi fi
gpart create -s BSD ${unit} gpart create -s BSD ${unit}
gpart bootcode -b ${1}/boot/boot ${unit} gpart bootcode -b ${1}/boot/boot ${unit}