From ea399ea4e4135ab47c931e5c3adaece7d0cf9ec3 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Sat, 13 Jan 2024 19:35:01 -0500 Subject: [PATCH] added some output to make this more usable --- scripts/rip_burn/blu_burn.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/rip_burn/blu_burn.sh b/scripts/rip_burn/blu_burn.sh index f862798d..8d686387 100644 --- a/scripts/rip_burn/blu_burn.sh +++ b/scripts/rip_burn/blu_burn.sh @@ -31,11 +31,13 @@ if [ ! -b "$device_name" ]; then exit 3 fi -echo iso "$iso_name" dev "$device_name" +echo "burning disk from image '$iso_name' on device '$device_name'..." +#echo iso "$iso_name" dev "$device_name" growisofs -dvd-compat -Z ${device_name}=${iso_name} #used to be appended to above line: -speed=2 #trying with letting it go default speed. has been working for us recently. - exit_on_error growing ISO FS from image ${iso_name} +echo "success burning '$iso_name' onto device '$device_name' !" + -- 2.34.1