changeset 16:cfb8a8c044b4

adjust cd-burn.
author Robert McIntyre <rlm@mit.edu>
date Sun, 19 May 2013 14:55:34 -0400
parents fc6c4e9295a7
children 69bf466ff2ae
files cd-burn.pl
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
     1.1 --- a/cd-burn.pl	Tue Feb 26 17:53:21 2013 +0000
     1.2 +++ b/cd-burn.pl	Sun May 19 14:55:34 2013 -0400
     1.3 @@ -11,7 +11,7 @@
     1.4  	 . '"'. $graft_point . '"');
     1.5  }
     1.6  
     1.7 -@mkisofs_args =  ("-iso-level", "4", "-r");
     1.8 +@mkisofs_args =  ("-iso-level", "4", "-r", "-quiet");
     1.9  
    1.10  @mkisofs_args = (@mkisofs_args, @graft_points);
    1.11  
    1.12 @@ -26,7 +26,7 @@
    1.13  @aes_loop_command = ("aespipe", "-P", "/etc/cd-key", "-e", "aes256");
    1.14  
    1.15  
    1.16 -$final_command = "mkisofs @mkisofs_args 2>/dev/null | @aes_loop_command | @burn_command";
    1.17 +$final_command = "mkisofs @mkisofs_args | @aes_loop_command | @burn_command";
    1.18  
    1.19  print "$final_command\n";
    1.20  system($final_command);