diff options
author | Roy Marples <roy@marples.name> | 2009-04-24 10:23:49 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2009-04-24 10:23:49 +0000 |
commit | b0ac71fe2aea81ef37a35016630198f38af2d662 (patch) | |
tree | fe9835c2107c1d13079f5668f0010076fcc47b81 /src/rc | |
parent | 9966a902ab375128e128edc4ca85676656b759db (diff) |
Add missing show levels switch.
Diffstat (limited to 'src/rc')
-rw-r--r-- | src/rc/rc-status.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/rc/rc-status.c b/src/rc/rc-status.c index 320b92c8..b4b3bdbf 100644 --- a/src/rc/rc-status.c +++ b/src/rc/rc-status.c @@ -219,6 +219,11 @@ rc_status(int argc, char **argv) } goto exit; /* NOTREACHED */ + case 'l': + levels = rc_runlevel_list(); + TAILQ_FOREACH(l, levels, entries) + printf("%s\n", l->value); + goto exit; case 'r': runlevel = rc_runlevel_get(); printf("%s\n", runlevel); |