Skip to content
Snippets Groups Projects
Verified Commit de185038 authored by Frank Sauerburger's avatar Frank Sauerburger
Browse files

Remove fullblock argument

parent 4c062983
No related branches found
No related tags found
1 merge request!10Resolve "Hashing file on tape does not stop after file"
Pipeline #3899 passed
......@@ -567,7 +567,7 @@ fi
export GPG_TTY=$(tty)
queue=""
if [ "$mode" == "asis" ]; then
queue+="dd if=\"$in_file\" bs=1M iflag=fullblock"
queue+="dd if=\"$in_file\" bs=1M"
########################################
# Progress
......@@ -628,7 +628,7 @@ elif [ "$mode" == "backup" ]; then
# Tape 3 -> 4
this_stage=3
if ((this_stage + 1 == target_stage)); then
queue+=" | dd bs=1M iflag=fullblock of=\"$out_file\""
queue+=" | dd bs=1M of=\"$out_file\""
else
if $checksum; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment