1 /* vi: set sw=4 ts=4: */
3 * runlevel Prints out the previous and the current runlevel.
5 * Version: @(#)runlevel 1.20 16-Apr-1997 MvS
7 * This file is part of the sysvinit suite,
8 * Copyright 1991-1997 Miquel van Smoorenburg.
10 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
12 * initially busyboxified by Bernhard Reutner-Fischer
18 int runlevel_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
19 int runlevel_main(int argc, char **argv)
24 if (argc > 1) utmpname(argv[1]);
27 while ((ut = getutent()) != NULL) {
28 if (ut->ut_type == RUN_LVL) {
29 prev = ut->ut_pid / 256;
30 if (prev == 0) prev = 'N';
31 printf("%c %c\n", prev, ut->ut_pid % 256);
32 if (ENABLE_FEATURE_CLEAN_UP)
40 if (ENABLE_FEATURE_CLEAN_UP)