diff options
author | Olivier Blin <oblin@mandriva.org> | 2006-03-13 14:17:40 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2006-03-13 14:17:40 +0000 |
commit | 4c42a7af86363e43019230b5bfd50af3767a3e28 (patch) | |
tree | c149306c1aaece4d7351e03cb1d5874f929df70f /live/One/2006.0/files/halt.local | |
parent | 4df8d073e1f9b5c7dbddeb18875fc2dfc1ebeea4 (diff) | |
download | drakx-4c42a7af86363e43019230b5bfd50af3767a3e28.tar drakx-4c42a7af86363e43019230b5bfd50af3767a3e28.tar.gz drakx-4c42a7af86363e43019230b5bfd50af3767a3e28.tar.bz2 drakx-4c42a7af86363e43019230b5bfd50af3767a3e28.tar.xz drakx-4c42a7af86363e43019230b5bfd50af3767a3e28.zip |
eject cd media before halt/reboot
Diffstat (limited to 'live/One/2006.0/files/halt.local')
-rw-r--r-- | live/One/2006.0/files/halt.local | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/live/One/2006.0/files/halt.local b/live/One/2006.0/files/halt.local new file mode 100644 index 000000000..b39f97581 --- /dev/null +++ b/live/One/2006.0/files/halt.local @@ -0,0 +1,24 @@ +#!/usr/bin/perl + +use lib qw(/usr/lib/libDrakX); +use MDK::Common; +use detect_devices; +use c; + +system("mount -t proc none /proc"); +my ($device) = cat_("/proc/mounts") =~ m!(/dev/\S+)\s+/live/media\s+iso9660!; +system("umount /proc"); +$device or exit; + +# try to put halt/reboot in cache, if not called directly from them +system("$_ --help 2>/dev/null") foreach qw(halt reboot); + +my $f = detect_devices::tryOpen($device); +# see openCdromTray() and unlockCdrom(), from install_any +ioctl($f, c::CDROM_LOCKDOOR(), 0); +ioctl($f, c::CDROMEJECT(), 0); + +print "\n\nPlease press <Enter> once the medium is removed.\n"; +<STDIN>; + +ioctl($f, 0x5319, 0); # CDROMCLOSETRAY |