diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2018-10-23 20:37:33 +0100 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2018-10-28 21:50:47 +0000 |
commit | 800ef4b1c55673b682b6ed4787bbeeab9991289d (patch) | |
tree | 17fc3a2496e42d45497c69ec1f675d166dec768d /examples/minimal/files/halt.local | |
parent | 56c37dc53dd2707264d0caafd7ac27a273147987 (diff) | |
download | drakiso-800ef4b1c55673b682b6ed4787bbeeab9991289d.tar drakiso-800ef4b1c55673b682b6ed4787bbeeab9991289d.tar.gz drakiso-800ef4b1c55673b682b6ed4787bbeeab9991289d.tar.bz2 drakiso-800ef4b1c55673b682b6ed4787bbeeab9991289d.tar.xz drakiso-800ef4b1c55673b682b6ed4787bbeeab9991289d.zip |
examples: remove halt-local service - it doesn't work.
Diffstat (limited to 'examples/minimal/files/halt.local')
-rwxr-xr-x | examples/minimal/files/halt.local | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/examples/minimal/files/halt.local b/examples/minimal/files/halt.local deleted file mode 100755 index e27ad1d..0000000 --- a/examples/minimal/files/halt.local +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/perl - -use lib qw(/usr/lib/libDrakX); -use MDK::Common; -use detect_devices; -use c; - -my ($device) = cat_("/proc/mounts") =~ m!(/dev/\S+)\s+/live/media\s+iso9660!; -$device or exit; - -# try to put halt/reboot in cache, if not called directly from them -# mount is also needed by end of /etc/init.d/halt -system("$_ --help &>/dev/null") foreach qw(halt mount reboot); - -my $f = detect_devices::tryOpen($device); -# see openCdromTray() from install::any -ioctl($f, c::CDROM_LOCKDOOR(), 0); # unlock door -ioctl($f, c::CDROMEJECT(), 0); - -system("clear"); -print "\n\n\nPlease press <Enter> (or <CTRL><J>) once the medium is removed.\n"; -system("read < /dev/console"); - -ioctl($f, c::CDROMCLOSETRAY(), 0); |