summaryrefslogtreecommitdiffstats
path: root/rescue/tree/etc/inittab
diff options
context:
space:
mode:
Diffstat (limited to 'rescue/tree/etc/inittab')
-rw-r--r--rescue/tree/etc/inittab14
1 files changed, 0 insertions, 14 deletions
diff --git a/rescue/tree/etc/inittab b/rescue/tree/etc/inittab
deleted file mode 100644
index 0348c66f4..000000000
--- a/rescue/tree/etc/inittab
+++ /dev/null
@@ -1,14 +0,0 @@
-#Inittab for Mandrake Rescue Disk
-#Author: Daouda Lo <daouda@mandrakesoft.com>
-id:3:initdefault:
-
-si::sysinit:/etc/rc.sysinit
-re:6:wait:/etc/rc.reboot
-ca:12345:ctrlaltdel:/sbin/fakeshutdown
-
-1:12345:respawn:/bin/bash --login
-2:23:respawn:/sbin/mingetty tty2
-3:23:respawn:/sbin/mingetty tty3
-4:23:respawn:/sbin/mingetty tty4
-5:23:respawn:/sbin/mingetty tty5
-6:23:respawn:/sbin/mingetty tty6
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ident "$Id$" #include <stdlib.h> #include "util.h" /*======================================================================*/ void * xrealloc(void *old, size_t size) { void *ptr = realloc(old, size); if (!ptr) { error("Out of memory"); exit(1); } return ptr; }