17 lines
216 B
Bash
Executable File
17 lines
216 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
. /etc/dvd-scripts.env
|
|
|
|
#A/etc/init.d/hdparm restart
|
|
hdparm -d1 -u1 $DVD_DEVICE
|
|
|
|
DVD_DIR=$1
|
|
|
|
growisofs -Z $DVD_DEVICE -dvd-video $DVD_DIR
|
|
growisofs -lead-out $DVD_DEVICE
|
|
echo Fertig.
|
|
sleep 1
|
|
eject
|