summaryrefslogtreecommitdiff
path: root/src/rc/rc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rc/rc.c')
-rw-r--r--src/rc/rc.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/rc/rc.c b/src/rc/rc.c
index ccafbe3..b062349 100644
--- a/src/rc/rc.c
+++ b/src/rc/rc.c
@@ -878,9 +878,16 @@ main(int argc, char **argv)
eerrorx("%s: %s", applet, strerror(errno));
/* NOTREACHED */
case 'S':
- bootlevel = rc_sys();
- if (bootlevel)
- printf("%s\n", bootlevel);
+ if (rc_conf_value("rc_sys")) {
+ bootlevel = rc_sys_v2();
+ if(bootlevel)
+ printf("%s\n", bootlevel);
+ } else {
+ ewarn("WARNING: rc_sys not defined in rc.conf. Falling back to automatic detection");
+ bootlevel = rc_sys_v1();
+ if(bootlevel)
+ printf("%s\n", bootlevel);
+ }
exit(EXIT_SUCCESS);
/* NOTREACHED */
case_RC_COMMON_GETOPT