From 800ef4b1c55673b682b6ed4787bbeeab9991289d Mon Sep 17 00:00:00 2001 From: Martin Whitaker Date: Tue, 23 Oct 2018 20:37:33 +0100 Subject: examples: remove halt-local service - it doesn't work. --- examples/xfce/files/halt-local.service | 23 ----------------------- examples/xfce/files/halt.local | 24 ------------------------ 2 files changed, 47 deletions(-) delete mode 100644 examples/xfce/files/halt-local.service delete mode 100755 examples/xfce/files/halt.local (limited to 'examples/xfce/files') diff --git a/examples/xfce/files/halt-local.service b/examples/xfce/files/halt-local.service deleted file mode 100644 index bc7f284..0000000 --- a/examples/xfce/files/halt-local.service +++ /dev/null @@ -1,23 +0,0 @@ -# This file is part of systemd. -# -# systemd is free software; you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. - -[Unit] -Description=/sbin/halt.local Compatibility -ConditionFileIsExecutable=/sbin/halt.local -DefaultDependencies=no -After=shutdown.target -Before=final.target - -[Service] -Type=oneshot -ExecStartPre=-/bin/kill -54 1 -ExecStartPre=-/usr/bin/plymouth quit -ExecStartPre=-/usr/bin/chvt 1 -ExecStart=/sbin/halt.local -TimeoutSec=0 -StandardOutput=tty -RemainAfterExit=yes diff --git a/examples/xfce/files/halt.local b/examples/xfce/files/halt.local deleted file mode 100755 index e27ad1d..0000000 --- a/examples/xfce/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 (or ) once the medium is removed.\n"; -system("read < /dev/console"); - -ioctl($f, c::CDROMCLOSETRAY(), 0); -- cgit v1.2.1