2006-06-04 01:19:21 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2005-10-29 02:07:03 +05:30
|
|
|
/*
|
|
|
|
* runlevel Prints out the previous and the current runlevel.
|
|
|
|
*
|
|
|
|
* Version: @(#)runlevel 1.20 16-Apr-1997 MvS
|
|
|
|
*
|
|
|
|
* This file is part of the sysvinit suite,
|
|
|
|
* Copyright 1991-1997 Miquel van Smoorenburg.
|
|
|
|
*
|
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
|
|
|
*
|
2008-09-25 17:43:34 +05:30
|
|
|
* initially busyboxified by Bernhard Reutner-Fischer
|
2005-10-29 02:07:03 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include <utmp.h>
|
2007-06-01 04:12:12 +05:30
|
|
|
#include "libbb.h"
|
2005-10-29 02:07:03 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int runlevel_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2007-04-05 02:22:03 +05:30
|
|
|
int runlevel_main(int argc, char **argv)
|
2005-10-29 02:07:03 +05:30
|
|
|
{
|
2006-09-23 21:31:09 +05:30
|
|
|
struct utmp *ut;
|
|
|
|
char prev;
|
2005-10-29 02:07:03 +05:30
|
|
|
|
2006-09-23 21:31:09 +05:30
|
|
|
if (argc > 1) utmpname(argv[1]);
|
2005-10-29 02:07:03 +05:30
|
|
|
|
2006-09-23 21:31:09 +05:30
|
|
|
setutent();
|
|
|
|
while ((ut = getutent()) != NULL) {
|
|
|
|
if (ut->ut_type == RUN_LVL) {
|
|
|
|
prev = ut->ut_pid / 256;
|
|
|
|
if (prev == 0) prev = 'N';
|
|
|
|
printf("%c %c\n", prev, ut->ut_pid % 256);
|
2007-06-01 04:12:12 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
endutent();
|
2006-09-23 21:31:09 +05:30
|
|
|
return 0;
|
|
|
|
}
|
2005-10-29 02:07:03 +05:30
|
|
|
}
|
|
|
|
|
2006-09-23 21:31:09 +05:30
|
|
|
puts("unknown");
|
2007-07-20 04:20:47 +05:30
|
|
|
|
2007-06-01 04:12:12 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
endutent();
|
2006-09-23 21:31:09 +05:30
|
|
|
return 1;
|
2005-10-29 02:07:03 +05:30
|
|
|
}
|