Bug 441339
| Summary: | Runlevel 1 -> 3 fails to kill bash | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Warren Togami <wtogami> |
| Component: | upstart | Assignee: | Casey Dahlin <cdahlin> |
| Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | low | Docs Contact: | |
| Priority: | low | ||
| Version: | 9 | CC: | jonstanley, notting, vanhoof |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2008-05-24 20:38:45 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Warren Togami
2008-04-07 17:03:53 UTC
How is the sulogin shell run? /etc/rc.d/rc1.d/S99single: #!/bin/bash # # # rc.single This file is executed by init when it goes into runlevel # 1, which is the administrative state. It kills all # deamons and then puts the system into single user mode. # Note that the file systems are kept mounted. # # Author: Miquel van Smoorenburg, <miquels.mugnet.org> # Modified for RHS Linux by Damien Neil # . /etc/init.d/functions if [ "$1" != "start" ]; then exit 0 fi # this looks nicer [ -x /usr/bin/clear ] && /usr/bin/clear # Now go to the single user level. echo $"Telling INIT to go to single user mode." exec init -t1 S Please try: http://git.fedorahosted.org/git/?p=initscripts.git;a=commit;h=d61552366c960cae6f5a52d493185ec8d8e716cd Changing version to '9' as part of upcoming Fedora 9 GA. More information and reason for this action is here: http://fedoraproject.org/wiki/BugZappers/HouseKeeping I can't reproduce this in released F9. Just did this exact thing for another bug. |