diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-05-23 04:44:02 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-05-23 04:44:02 -0400 |
commit | 14cf5bf458ffc9e084ce45868ec2c9c4aebe494f (patch) | |
tree | 8ce3538e91eeae8ebccc3a1a963503c67672fbb9 /PCBSD/pc-sysinstall/backend | |
parent | 514026a5f6837297d682573b51f7929f0661acb9 (diff) | |
download | pfsense-14cf5bf458ffc9e084ce45868ec2c9c4aebe494f.zip pfsense-14cf5bf458ffc9e084ce45868ec2c9c4aebe494f.tar.gz |
Do not copy verbose
Diffstat (limited to 'PCBSD/pc-sysinstall/backend')
-rw-r--r-- | PCBSD/pc-sysinstall/backend/functions-extractimage.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PCBSD/pc-sysinstall/backend/functions-extractimage.sh b/PCBSD/pc-sysinstall/backend/functions-extractimage.sh index 9868c53..ee4966e 100644 --- a/PCBSD/pc-sysinstall/backend/functions-extractimage.sh +++ b/PCBSD/pc-sysinstall/backend/functions-extractimage.sh @@ -276,8 +276,8 @@ init_extraction() oIFS=$IFS IFS="," for FILE in $INSFILE; do - echo_log "pc-sysinstall: Running cpdup -vvv -I -o /${FILE} /mnt/${FILE}" - /usr/local/bin/cpdup -vvv -I -o /${FILE} /mnt/${FILE} >&1 2>&1 + echo_log "pc-sysinstall: Running cpdup -I -o /${FILE} /mnt/${FILE}" + /usr/local/bin/cpdup -I -o /${FILE} /mnt/${FILE} >&1 2>&1 if [ "$?" != "0" ] then echo "CPDUP failure occured:" >>${LOGOUT} |