UbuntuIRC / 2008 /04 /07 /#upstart.txt
niansa
Initial commit
4aa5fce
[18:34] <warren> Any Ubuntu user here? Fedora developer here wondering about how runlevels on Ubuntu behave.
[18:34] <warren> On Fedora we have runlevels like:
[18:34] <warren> 1 - single user mode
[18:35] <warren> 3 - network with text login
[18:35] <warren> 5 - network with X
[18:35] <warren> 6 - reboot
[18:35] <warren> We can use "init X" where X is a number to switch between them
[18:35] <warren> Does Ubuntu behave anything like this?
[18:48] <Keybuk> warren: Ubuntu's runlevels are the same as Debian's
[18:48] <Keybuk> we have S and 0 thru 6
[18:48] <Keybuk> where 0 and 6 are special (halt and reboot)
[18:48] <Keybuk> 1 is used for switching to S (single user)
[18:48] <Keybuk> 2 thru 5 are up to the user to define
[18:48] <Keybuk> with 2 as the default
[18:58] <warren> Keybuk: do you understand the /etc/event.d/ file format?
[18:58] <Keybuk> sometimes
[18:59] <warren> for example:
[18:59] <warren> /etc/event.d/rc3:
[18:59] <warren> start on runlevel 3
[18:59] <warren> stop on runlevel
[18:59] <Keybuk> right...?
[19:00] <warren> what does it mean if you have no number on "stop on runlevel"?
[19:00] <Keybuk> runlevel is an event
[19:00] <Keybuk> 3 is an argument to that event
[19:00] <Keybuk> the runlevel event means that the runlevel has changed
[19:00] <Keybuk> it gets the new runlevel as an argument
[19:00] <Keybuk> so "on runlevel 3" means "when the runlevel is changed to 3"
[19:00] <Keybuk> "on runlevel" just means "when the runlevel is changed"
[19:01] <Keybuk> (ie. to any runlevel)
[19:01] <warren> hm
[19:01] <warren> stuff in /etc/event.d are events as well?
[19:01] <Keybuk> no
[19:02] <Keybuk> they are jobs
[19:02] <warren> another event.d file has:
[19:02] <warren> start on stopped rc5
[19:02] <warren> where are the "start on foo" things documented?
[19:03] <Keybuk> right
[19:03] <Keybuk> stopped is the event, it means that a job has stopped
[19:03] <Keybuk> it gets the job name as an argument
[19:03] <Keybuk> so that means start this job when the rc5 job is stopped
[19:03] <Keybuk> the rc5 job probably runs the /etc/rc5.d (or /etc/init.d/rc5.d on "strange distros" :p) directory
[19:04] <Keybuk> the events are limitless
[19:04] <Keybuk> start on bangbangwibblewheresmypopsicle
[19:04] <Keybuk> is valid
[19:04] <Keybuk> something just needs to call initctl emit bangbangwibblewheresmypopsicle somewhere
[19:05] <warren> oh crap. I have to work on a bigger bug. brb.
[19:31] <warren> ok, back now.
[21:50] <brendan_> Keybuk: is there a way to emit runlevel 2 apart from using the sysv compat runlevel command?
[21:50] <brendan_> like "initctl emit runlevel 2"?
[21:50] <brendan_> are events allowed to have spaces like that?
[22:17] <Keybuk> brendan_: exactly like that
[22:18] <brendan_> Keybuk: great! thanks
[22:18] <Keybuk> there's no space
[22:18] <Keybuk> you're separating an event name and its argument there
[22:19] <warren> Keybuk: our /etc/event.d/rc5 http://fpaste.org/paste/1656
[22:20] <warren> Keybuk: it seems that we're setting runlevel 5 in this job
[22:20] <Keybuk> warren: looks the same as the demo one?
[22:20] <warren> ok...
[22:20] <warren> i'm just trying to better understand what's going on
[22:20] <Keybuk> "runlevel --set" stores the runlevel in utmp
[22:20] <warren> Keybuk: we're trying to deal with a few upstart bugs
[22:20] <warren> Keybuk: like ... during shutdown you don't see anything
[22:21] <Keybuk> do you have "console output" in the rc6 job?
[22:22] <warren> yes
[22:22] <Keybuk> are you running anything that might change /dev/console ?
[22:22] <warren> change in what way?
[22:22] <Keybuk> e.g. usplash, X, rhgb, bootlogd, etc. ?
[22:22] <Keybuk> redirect
[22:22] <Keybuk> a common issue is if you run shutdown -h now while under X, the output will go to VT 7
[22:22] <warren> not that I'm aware of
[22:23] <warren> so if I switch to VT7 during shutdown I should be able to chdeck
[22:23] <warren> check
[22:23] <Keybuk> right
[22:23] <warren> ah, you're right!
[22:23] <warren> redirected to VT7
[22:25] <warren> Keybuk: here are all of our reported upstart bugs
[22:25] <warren> Keybuk: http://tinyurl.com/4w8cdr
[22:26] <warren> Any ideas about these two? https://bugzilla.redhat.com/show_bug.cgi?id=441339 and https://bugzilla.redhat.com/show_bug.cgi?id=438444
[23:01] <Keybuk> back
[23:01] <Keybuk> sorry, was taking an exam there ;)
[23:02] <Keybuk> warren: 441339: is that not the case with sysvinit?
[23:03] <Keybuk> 438444: that may be a difference in the way that runlevels work in Fedora and Ubuntu?
[23:03] <Keybuk> in Ubuntu, rc 1 will run /etc/rc1.d which contains a K script for everything in rc2-5
[23:03] <Keybuk> and then finally will run telinit S to switch to S (single-user-mode)
[23:03] <Keybuk> maybe Fedora has those two completely backwards?