[01:51] hello, i'm trying to figure out the command to run to get the list of services started on boot. i've found the upstart docs and read everything that looked relevant to me but i still havent figured it out... any pointers would be appreciated [01:52] this is on a ubuntu 11.04 headless server === robbiew1 is now known as robbiew [07:09] steffen123: because of the parallelism and event based nature, its hard to say on a modern system what gets started... [07:10] steffen123: there is a visualization tool though, that will show you a graph of events -> jobs that helps [07:16] steffen123: its called 'initctl2dot' [07:20] steffen123: initctl2dot && dot -Tx11 upstart.dot <-- will show you your system's "graph" [10:20] also, there isn't a fixed list of what services are started on boot, as that might well depend on external circumstances... [10:23] or if you look at it from a more narrow angle, only jobs with "start on startup" are started directly because you are booting, all the rest gets started because of other events ;) [12:02] ok thanks for the advise