diff options
author | Renato Botelho <renato@netgate.com> | 2016-07-19 17:01:06 -0300 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2016-07-19 17:01:06 -0300 |
commit | 2e1ebfdddedad0dbb97d381c507560517894b859 (patch) | |
tree | b98270f785abd29a721db7cc09d17ffe8bc89947 | |
parent | f3553ac923051d619b43e3cac42ee5aef60ef36d (diff) | |
download | pfsense-2e1ebfdddedad0dbb97d381c507560517894b859.zip pfsense-2e1ebfdddedad0dbb97d381c507560517894b859.tar.gz |
Fix variable namev2.3.2
-rw-r--r-- | tools/builder_common.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/builder_common.sh b/tools/builder_common.sh index 605f248..7c2916f 100644 --- a/tools/builder_common.sh +++ b/tools/builder_common.sh @@ -955,7 +955,7 @@ create_ova_image() { # Create / partition echo -n ">>> Creating / partition... " | tee -a ${LOGFILE} truncate -s ${OVA_FIRST_PART_SIZE} ${OVA_TMP}/${OVFUFS} - local _md=$(mdconfig -a -f ${OVA_TMP}/${OVAUFS}) + local _md=$(mdconfig -a -f ${OVA_TMP}/${OVFUFS}) trap "mdconfig -d -u ${_md}; return" 1 2 15 EXIT newfs -L ${PRODUCT_NAME} -j /dev/${_md} 2>&1 >>${LOGFILE} |