changeset 14:40806ae2eb19

remove dangerous overburn paramater.
author Robert McIntyre <rlm@mit.edu>
date Mon, 25 Feb 2013 18:55:50 +0000
parents 06a9a4618faf
children fc6c4e9295a7
files cd-burn.pl
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
     1.1 --- a/cd-burn.pl	Mon Feb 25 15:51:23 2013 +0000
     1.2 +++ b/cd-burn.pl	Mon Feb 25 18:55:50 2013 +0000
     1.3 @@ -21,7 +21,7 @@
     1.4  chomp($size);
     1.5  
     1.6  @burn_command = ("cdrecord", "gracetime=3", "-v",
     1.7 -		 "-overburn", "tsize=".$size."s", "-data", "-");
     1.8 +		 "tsize=".$size."s", "-data", "-");
     1.9  
    1.10  @aes_loop_command = ("aespipe", "-P", "/etc/cd-key", "-e", "aes256");
    1.11  
    1.12 @@ -30,3 +30,4 @@
    1.13  
    1.14  print "$final_command\n";
    1.15  system($final_command);
    1.16 +