summaryrefslogtreecommitdiffstats
path: root/tools/builder_common.sh
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2015-08-27 12:07:45 -0300
committerRenato Botelho <renato@netgate.com>2015-08-27 12:07:45 -0300
commit71b5fc938b58b22f5054d33220ee348a95243f88 (patch)
tree9c00796da250e649b68f7f5abb4f8fedd7b250eb /tools/builder_common.sh
parent3ade347884c368d2fbf92dc8fc220360a23ac8e8 (diff)
downloadpfsense-71b5fc938b58b22f5054d33220ee348a95243f88.zip
pfsense-71b5fc938b58b22f5054d33220ee348a95243f88.tar.gz
Remove path to call echo
Diffstat (limited to 'tools/builder_common.sh')
-rw-r--r--tools/builder_common.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/builder_common.sh b/tools/builder_common.sh
index 95c6eaa..39e2735 100644
--- a/tools/builder_common.sh
+++ b/tools/builder_common.sh
@@ -793,7 +793,7 @@ create_ova_image() {
ova_remove_old_tmp_files
ova_setup_ovf_template
ova_create_raw_backed_file
- /bin/echo -n ">>> Creating mdconfig image ${IMAGES_FINAL_DIR}/${OVFVMDK}.raw... " | tee -a ${LOGFILE}
+ echo ">>> Creating mdconfig image ${IMAGES_FINAL_DIR}/${OVFVMDK}.raw... " | tee -a ${LOGFILE}
MD=$(mdconfig -a -t vnode -f ${IMAGES_FINAL_DIR}/${OVFVMDK}.raw)
# Just in case
trap "mdconfig -d -u ${MD}" 1 2 15 EXIT
@@ -894,7 +894,7 @@ ova_prereq_check() {
# called from create_ova_image
ova_calculate_mnt_size() {
- /bin/echo -n ">>> Calculating size of /mnt..." | tee -a ${LOFGILE}
+ echo -n ">>> Calculating size of /mnt..." | tee -a ${LOFGILE}
INSTALLSIZE=$(du -s /mnt/ | awk '{ print $1 }')
INSTALLSIZEH=$(du -d0 -h /mnt/ | awk '{ print $1 }')
echo $INSTALLSIZEH
OpenPOWER on IntegriCloud