Store interactive mode after sysinit, #128 thanks to Matthias Schwarzott.

This commit is contained in:
Roy Marples 2008-12-13 22:20:21 +00:00
parent 6bf0289f33
commit 9e5e60f257

View File

@ -691,7 +691,9 @@ interactive_option:
}
/* Store our interactive status for boot */
if (interactive && strcmp(runlevel, getenv("RC_BOOTLEVEL")) == 0)
if (interactive &&
(strcmp(runlevel, RC_LEVEL_SYSINIT) == 0 ||
strcmp(runlevel, getenv("RC_BOOTLEVEL")) == 0))
mark_interactive();
else {
if (exists(INTERACTIVE))