# HG changeset patch # User Robert McIntyre # Date 1368989734 14400 # Node ID cfb8a8c044b416cf433c8714e6769bb4980e6b74 # Parent fc6c4e9295a7620288c6d32e364e4609d59a83b4 adjust cd-burn. diff -r fc6c4e9295a7 -r cfb8a8c044b4 cd-burn.pl --- a/cd-burn.pl Tue Feb 26 17:53:21 2013 +0000 +++ b/cd-burn.pl Sun May 19 14:55:34 2013 -0400 @@ -11,7 +11,7 @@ . '"'. $graft_point . '"'); } -@mkisofs_args = ("-iso-level", "4", "-r"); +@mkisofs_args = ("-iso-level", "4", "-r", "-quiet"); @mkisofs_args = (@mkisofs_args, @graft_points); @@ -26,7 +26,7 @@ @aes_loop_command = ("aespipe", "-P", "/etc/cd-key", "-e", "aes256"); -$final_command = "mkisofs @mkisofs_args 2>/dev/null | @aes_loop_command | @burn_command"; +$final_command = "mkisofs @mkisofs_args | @aes_loop_command | @burn_command"; print "$final_command\n"; system($final_command);