Split miscutils/Config.src items into miscutils/*.c files
[oweals/busybox.git] / miscutils / runlevel.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Prints out the previous and the current runlevel.
4  *
5  * Version: @(#)runlevel  1.20  16-Apr-1997  MvS
6  *
7  * This file is part of the sysvinit suite,
8  * Copyright 1991-1997 Miquel van Smoorenburg.
9  *
10  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
11  *
12  * initially busyboxified by Bernhard Reutner-Fischer
13  */
14 //config:config RUNLEVEL
15 //config:       bool "runlevel"
16 //config:       default y
17 //config:       depends on FEATURE_UTMP
18 //config:       help
19 //config:         find the current and previous system runlevel.
20 //config:
21 //config:         This applet uses utmp but does not rely on busybox supporing
22 //config:         utmp on purpose. It is used by e.g. emdebian via /etc/init.d/rc.
23
24 //usage:#define runlevel_trivial_usage
25 //usage:       "[FILE]"
26 //usage:#define runlevel_full_usage "\n\n"
27 //usage:       "Find the current and previous system runlevel\n"
28 //usage:       "\n"
29 //usage:       "If no utmp FILE exists or if no runlevel record can be found,\n"
30 //usage:       "print \"unknown\""
31 //usage:
32 //usage:#define runlevel_example_usage
33 //usage:       "$ runlevel /var/run/utmp\n"
34 //usage:       "N 2"
35
36 #include "libbb.h"
37
38 int runlevel_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
39 int runlevel_main(int argc UNUSED_PARAM, char **argv)
40 {
41         struct utmpx *ut;
42         char prev;
43
44         if (argv[1]) utmpxname(argv[1]);
45
46         setutxent();
47         while ((ut = getutxent()) != NULL) {
48                 if (ut->ut_type == RUN_LVL) {
49                         prev = ut->ut_pid / 256;
50                         if (prev == 0) prev = 'N';
51                         printf("%c %c\n", prev, ut->ut_pid % 256);
52                         if (ENABLE_FEATURE_CLEAN_UP)
53                                 endutxent();
54                         return 0;
55                 }
56         }
57
58         puts("unknown");
59
60         if (ENABLE_FEATURE_CLEAN_UP)
61                 endutxent();
62         return 1;
63 }