Commit a80aac26f7f75aa04c754302ae4c84bd8d9c54f2
1 parent
64a85d4455
Exists in
master
Remove obsolete login.live and eject_cd.sh
Showing 3 changed files with 0 additions and 19 deletions Side-by-side Diff
Makefile
... | ... | @@ -69,8 +69,6 @@ |
69 | 69 | done |
70 | 70 | |
71 | 71 | install: install-dirs install-locales install-icons |
72 | - $(INSTALL_PROGRAM) tools/eject_cd.sh $(DESTDIR)$(sbindir) | |
73 | - $(INSTALL_PROGRAM) tools/login.live $(DESTDIR)$(sbindir) | |
74 | 72 | $(INSTALL_DATA) tools/autovt@.service $(DESTDIR)$(sysconfdir)/systemd/system/ |
75 | 73 | $(INSTALL_PROGRAM) liveuser-sudoers $(DESTDIR)$(sysconfdir)/sudoers.d/liveuser |
76 | 74 | $(INSTALL_DATA) openmamba-installer.desktop $(DESTDIR)$(SYSTEM_MENU_DIR) |
tools/eject_cd.sh
1 | -#! /bin/sh | |
2 | -# | |
3 | -# eject_cd.sh - openmamba livecd eject CD and halt/reboot script | |
4 | -# | |
5 | -# Copyright (c) 2003-2013 by Silvan Calarco <silvan.calarco@qilinux.it> | |
6 | -# Copyright (c) 2003-2004 by Davide Madrisan <davide.madrisan@qilinux.it> | |
7 | - | |
8 | -# FIXME: support SCSI cdroms | |
9 | -CDROMDEV=`cat /etc/mtab | sed -n '/ \/cdrom /{h;s/ .*//p}'` | |
10 | -# eject live CDROM | |
11 | -eject -m $CDROMDEV |