16 lines
199 B
Bash
Executable File
16 lines
199 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
. /etc/dvd-scripts.env
|
|
|
|
#/etc/init.d/hdparm restart
|
|
hdparm -u1 -d1 $DVD_DEVICE
|
|
|
|
DVD_IMAGE=$1
|
|
|
|
[ -r $DVD_IMAGE ] && growisofs -Z $DVD_DEVICE=$DVD_IMAGE
|
|
echo Fertig.
|
|
sleep 1
|
|
eject
|