LWN: Comments on "Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet)" https://lwn.net/Articles/382810/ This is a special feed containing comments posted to the individual LWN article titled "Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet)". en-us Tue, 21 Oct 2025 23:09:05 +0000 Tue, 21 Oct 2025 23:09:05 +0000 https://www.rssboard.org/rss-specification lwn@lwn.net Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/385982/ https://lwn.net/Articles/385982/ drdabbles <div class="FormattedComment"> The amount of vitriol, misunderstanding, and desire for status quo is unbelievable at times lately. The Ubuntu distribution is leading the charge (along with several other distros) to modernize the boot process. Some features make it past the chopping block, and others don't. It's that simple.<br> <p> You can write software for years and it still won't address every corner case a user or developer could possibly throw at it, so you write the best software to solve the core problem.<br> <p> Most of the "problems" with Upstart come from people not reading the documentation. Upstart allows you to configure the way you start or stop a script at boot by listing the events that should kick it off. If you want to prevent a service from starting on the next boot, comment out the line that tells the script what events should signal it to start. No need to create or delete symlinks. And the symlinks were there as a work around for other issues to begin with. SysV startup has been a nightmare for distributions for a long time, and it has left quite a lot to be desired. Upstart brings a framework to each startup event being created that has to be written in SysV scripts (either by inheriting functions and variables from a script kicked off at the beginning, or some other kludgey work around).<br> <p> The bug report was a complete joke after the first few posts. FAR too many people trying to add their own worthless opinion about a sequence of events they have never even seen before. The root cause for the bug being filed was a user blindly running a script from a location users would almost certainly never run scripts from by hand. And so, instead of reading the script to see what it does, he found out the hard way. Don't supply it with a variable to tell it where to start a `find` process, and it'll default to the current directory. Wouldn't have been too hard to spot that little gem. Should the script be cleaned up? Certainly! Not performing sanity checks on variables is a poor design choice by anybody's standards. But the author decided to push the bug up a level so that the framework would be fixed instead of this one script. Fixing the framework means any OTHER scripts with similar issues will be fixed as well. This is a positive move on his behalf! But still people berate him.<br> <p> Finally, using a bug report to inform a single maintainer that you will not be using a particular distribution or that you prefer they make a packaging change so Upstart is optional is, to be blunt, pathetic. Try that on a Debian or a Gnome bug tracker and see where it gets you. Bug reports are NOT the place to launch a political campaign against a maintainer, developer, or distribution. It's that simple. If you have a concern for the direction of a package, project, or distribution it should be taken to the appropriate forums or IRC channels. It can be better dealt with there, and is open to general community input. Sometimes you'll find that you are the vast minority in your opinion, and other times you will find a large body of support. But if you don't bother using the appropriate channels, you'll never find out.<br> <p> The long and short of it is this- Upstart is being used now by several distributions as the main system init. suite. The distributions didn't just use it because it was a new fad to jump on. Everyone has had times where SysV didn't provide enough functionality, and everyone has had times where SysV didn't add a feature for a LONG time due to heritage and compatibility with generic *nix. That's their choice. Upstart brings them the features they wanted while allowing fallback to SysV-style startup. If you find a feature missing, or you find a bug in the way Upstart works, stop bitching about it and submit a bug report. If you think you can do a better job than the maintainer, submit a patch! Community EFFORT is what makes Open Source work. Community bitching and moaning is what makes Open Source fail.<br> </div> Mon, 03 May 2010 21:46:34 +0000 upstart vs. runit https://lwn.net/Articles/384430/ https://lwn.net/Articles/384430/ jhohm <div class="FormattedComment"> One notable runit feature, lacking in upstart AFAICT, is guaranteed logging of job output via a "child" log job, which is not actually a child and will survive the job being killed or dying and not lose any log output.<br> </div> Thu, 22 Apr 2010 16:21:05 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/383735/ https://lwn.net/Articles/383735/ liljencrantz <div class="FormattedComment"> Am I misreading you, or are you actually advocating that using a single shellscript file to stuff your entire boot sequence in is preferable to sysV-init or upstart, because there are so many different files to keep track of? That sounds like a completely insane argument from where I'm standing.<br> <p> First of all, keeping everything in a single shellscript file is a nightmare for packaging and scripting. For example, if you make a service start up at boot time by appending a few lines to rc.conf, how do you automatically uninstall said service?<br> <p> Do you sed out the exact line you added? What if the user has edited the file and the editor decided to add a bit of extra whitespace to your line?<br> <p> Do you try to make a fuzzy match with a clever regexp and pray that it works?<br> <p> Do you conclude that «starting and stopping a services at boot is way to hard a problem for a computer to solve, let the user deal with it»?<br> <p> Do you fail to provide any form of working uninstall script?<br> <p> In Debian, the rule is that everything that should be possible to enable or disable using a script lives in it's own file in a directory named something appropriate, like «modules-available». You enable and disable things by creating a symlink to the file from some other directory, e.g. «modules-enabled». Usually, there is a simple script to do it for you, e.g. «a2enmod». Sure, this involves more files than stuffing your entire configuration into a single file, but since this method is used pretty consistently, it's not harder to figure out for even a slightly experienced sysadmin, and the benefits for packagers, sysadmins and just about anybody how likes to automate things is enormous.<br> <p> Secondly, a simple server running a small number of services does not require a huge rc.conf file. The base install of a bsd system looks fine. But my laptop, which runs services enabling wired and wireless networking, bluetooth, nfs, mobile broadband, gps, powersaving, printing, file sharing, ssh, apache, three different database servers and a host of other things would have a simply enormous rc.conf file. And I need those things - I use my laptop as my development machine when I'm on the road, and I often need to work without internet access. There comes a point where a single file is significantly _less_ readable than a directory of logically named files, and my laptops boot sequence is far beyond that point. Part of that is because many of the init scripts are extremely bloated, but even if they were all lean and mean, it would still be far too much to stuff into a single file without losing overview of what goes where. In fact, from my (admittedly somewhat limited) experience from the BSDs, all moderatly complicated services are started by writing the service startup code into a separate shellscript file, and simply calling that script form rc.conf. All that you've done in that case is make sure that instead of enforcing a consistent file layout, services will use a startup files with different file name conventions and most likely vastly different internals as well.<br> <p> <p> </div> Sat, 17 Apr 2010 09:00:55 +0000 What Upstart is not https://lwn.net/Articles/383734/ https://lwn.net/Articles/383734/ liljencrantz <div class="FormattedComment"> True, but upstart _should_ be about speed. Not exclusively of course, but seeing how most Linux kernels are running on ARM and other tiny embedded hardware, and even Ubuntu, the main user of upstart, is quickly moving towards netbooks and smartphones, it should be completely obvious that boot speed _is_ one of the critical aspects of initialization that needs to be handled.<br> </div> Sat, 17 Apr 2010 08:27:47 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/383721/ https://lwn.net/Articles/383721/ dmag <div class="FormattedComment"> I just started playing with runit. It is another init replacement that takes the unix philosophy to heart. It solves neat problems like "every service shouldn't have to have the same boilerplate deamonization code".<br> <p> I'd be interested if anyone has any thoughts on the benefits of upstart vs runit.<br> </div> Sat, 17 Apr 2010 03:58:58 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/383094/ https://lwn.net/Articles/383094/ foom <div class="FormattedComment"> Another problem with set -u is that bash has a very irritating bug: it calls an explicitly defined empty array unset! That makes it very hard to do things like splice arguments into a command line correctly. E.g. something like this...The expansion "${x[@]}" fails with<br> bash: x[@]: unbound variable<br> instead of correctly expanding into no arguments.<br> <p> #!/bin/bash<br> set -u<br> extraargs=()<br> if [$# -ge 1]; then<br> extraargs += ("--filename" $1)<br> fi<br> <p> "command" "--dowhatever" "${x[@]}"<br> </div> Mon, 12 Apr 2010 15:25:20 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/383081/ https://lwn.net/Articles/383081/ nhippi <div class="FormattedComment"> <font class="QuotedText">&gt; I have found upstart violating the KISS principle. SysV init is simple and easy to configure. </font><br> <p> It is not. You are just *used* to SysV. Common mistake but big difference. And I'm not saying that upstart is simple. Generally the simplest and fastest startup is a hardcoded script aka what the embedded people tend to do...<br> <p> <p> </div> Mon, 12 Apr 2010 08:45:35 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/383078/ https://lwn.net/Articles/383078/ keybuk <p>For a long time, I strongly considered having Upstart run all of its shell processes with "set -u" (it already runs them all with "-e"). Unfortunately "-u" has surprising results, even for those who are used to shell programming!</p> <p>For example, the following is a very common way to test whether a parameter is not in fact set:</p> <pre> if [ -z "$MOUNTPOINT" ]; then MOUNTPOINT=/tmp fi </pre> <p>The use of <code>$MOUNTPOINT</code> in the test is <i>still</i> considered an expansion, thus if you try and run this, you get:</p> <pre> /proc/self/fd/4: 1: MOUNTPOINT: parameter not set </pre> <p>There are obviously ways to write the code so that it works with "-u", e.g.:</p> <pre> MOUNTPOINT=${MOUNTPOINT+/tmp} </pre> <p>but I figured that more people wouldn't know these, and would simply get frustrated at Upstart's apparent inability to run (in their mind) perfectly cromulent shell scripts.</p> Mon, 12 Apr 2010 06:09:20 +0000 What Upstart is not https://lwn.net/Articles/383045/ https://lwn.net/Articles/383045/ sladen <p>Upstart is <strong>not about speed</strong>, it is about enabling a distro to boot on modern dynamic hardware setups (eg. the system needs to wait for the correct USB hard disk with the root filesystem to be inserted, rather than just dying).</p> <p>...and what is <em>"new"</em> is that Upstart is <strong>not dependency-based</strong>, it is the <em>opposite</em>. You start from nothing, and see where you end up; there is no presumption that you'll end up with a functioning system but Upstart will launch what it can based on the combination of presently available of hardware, functioning network connection(s), and the configured state of system software&mdash;all of which may change over time.</p> Sun, 11 Apr 2010 12:04:09 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382999/ https://lwn.net/Articles/382999/ cjwatson <div class="FormattedComment"> I think the LinuxPlanet article placed a bit too much weight on that. Upstart won't subsume udev as far as I understand it; udev rules and Upstart jobs often work together - it's more that Upstart can respond to udev-generated events to start things that aren't suitable for being started from udev. And while subsuming cron has been a long-term goal since Upstart was first designed, the plan was always to make it work really well as an init daemon before getting into the security issues that arise once Upstart is supervising non-root jobs and taking configuration from non-root users.<br> </div> Sat, 10 Apr 2010 08:09:35 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382998/ https://lwn.net/Articles/382998/ cjwatson <div class="FormattedComment"> The init(5) manual page might be helpful.<br> </div> Sat, 10 Apr 2010 07:49:51 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382993/ https://lwn.net/Articles/382993/ rilder <div class="FormattedComment"> There is nothing new(or better) in parallel service startup of upstart. SysV can be(and has been) modified for parallel startup of services. <br> I have used bootchart before to obtain the booting phase timings. <br> </div> Sat, 10 Apr 2010 05:35:30 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382992/ https://lwn.net/Articles/382992/ rilder <div class="FormattedComment"> SysV init won't handle it. It should be handled by higher level daemons/applications. Having said that, let me point out that there is/was another project which was intended to do these things -- hal. Now it is being deprecated and being replaced by smaller alternatives which do one thing only like upower/devicekit or replaced already existing ones like udev(Xorg is doing this). <br> <p> But I also understand the scenario you are mentioning -- more like zeroconf -- in these cases upstart may help/work because it provides an unified framework (so that there is no duplication of effort). But making an init system do all these may prove to be costly later when there are too many things it is made to handle (like cron etc.). Events can already be handled by existing frameworks like udev, so any application can be written to read/handle them.<br> </div> Sat, 10 Apr 2010 05:27:35 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382991/ https://lwn.net/Articles/382991/ rilder <div class="FormattedComment"> Actually the one I use(Arch Linux) is based on a modified BSD SysV style -- so there is no /etc/rcX.d/(where X is runlevel I assume).. There are just /etc/rc.conf, /etc/rc.sysinit, /etc/inittab(for runlevels) etc.. Functions in these can also be hooked. Keeps configuration much much simpler and clean. <br> That being said, I should also mention that I used upstart long time back, so much may have changed(though it doesn't look like that from wiki). The wiki mentions asynchronous execution capability of upstart as an unique trait. It isn't. There are others(one I mentioned above) which support it.<br> </div> Sat, 10 Apr 2010 05:12:12 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382979/ https://lwn.net/Articles/382979/ Lukehasnoname <div class="FormattedComment"> It's been a while since I've set up a BSD system, but Upstart on Ubuntu isn't that complicated in its hierarchy. <br> <p> Startup scripts that actually do work are still traditionally in /etc/init.d/<br> <p> The configuration files, telling when services are to start/stop/etc. are in /etc/init/, rather than /etc/rcX.d/.<br> <p> doesn't seem too much more complicated to me. I believe the benefits of Upstart are great; its use cases at present are well justified. I haven't contemplated whether I agree with it taking over mounting drives or cron, though. Also, it needs to document its uses, setup, and syntax FORMALLY (example wikis are not enough, Scott!). <br> </div> Fri, 09 Apr 2010 22:43:06 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382951/ https://lwn.net/Articles/382951/ rilder <div class="FormattedComment"> I would like to point out the complexity in managing configuration in upstart. Having multiple directories and symlinks among them makes updating config a very very clumsy process. On the other hand, approach of BSD style SysV to club together all in one file(rc.conf) keeps it clean and error free. <br> <p> <p> </div> Fri, 09 Apr 2010 18:52:58 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382941/ https://lwn.net/Articles/382941/ drag <div class="FormattedComment"> Quite frequently I use mobile devices were the network topography changes.<br> <p> For instance I may boot up into my home environment were I am comfortable running services like Avahi, Samba, SSh, etc etc.<br> <p> Other times I may boot up into a situation were I have no network, or I boot up networks that are insecure and I want to present a hardened exterior to the network.<br> <p> And the network situation can change while the machine is active.<br> <p> Now event-driven init system like upstart can handle these situations in a effective manner; even though it's not fully taken advantage of yet by Linux distros.<br> <p> How would this be handled by SysV style system?<br> </div> Fri, 09 Apr 2010 18:22:44 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382939/ https://lwn.net/Articles/382939/ nix <div class="FormattedComment"> It's enough that *not everybody* uses set -u. Even in critical places like startup scripts and security-upgrade scripts issuing rm -r! :)<br> <p> </div> Fri, 09 Apr 2010 17:13:59 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382937/ https://lwn.net/Articles/382937/ jspaleta <div class="FormattedComment"> Has anyone seen an analysis of boot times which goes into detail about how much boot time savings native upstart jobs are actually providing?<br> <p> If the general purpose distros are all still running upstart in hybrid mode, it makes it difficult for me to get a clear picture of what upstart's boot time savings actually are compared to pure SysV init. <br> <p> I understand that theoretically the parallel service start up its capable of should reduce boot times. But I haven't seen an analysis which measures that specifically. I'd love a reference if someone has one.<br> <p> -jef<br> </div> Fri, 09 Apr 2010 17:06:35 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382931/ https://lwn.net/Articles/382931/ MisterIO <div class="FormattedComment"> You're right, I didn't notice that. Still, the distinction between started-by-upstart and started-by-hand doesn't make much sense IMO. Just write properly all the scripts, without relying on the assumption that they're started by upstart, in particular when that assumption can put you at such a risk.<br> </div> Fri, 09 Apr 2010 16:50:35 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382924/ https://lwn.net/Articles/382924/ brouhaha I agree that SysV is lacking and that having a better replacement such as upstart is a good idea. But I don't think that having upstart also subsume the functionality of cron and udev is necessarily a good idea. I'd want to see some pretty good justification that it will result in real benefits due to the integration. Fri, 09 Apr 2010 16:19:06 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382920/ https://lwn.net/Articles/382920/ larryr <div class="FormattedComment"> It seems to me more and more common (on Ubuntu at least) for these system level tools to rely on higher level applications like GUIs to ensure valid configurations. There may be configuration files are which are human readable, if not human understandable without reverse engineeering, but people who actually edit them by hand do so at their own peril.<br> <p> I prefer this way, though, to situations with just a DBus API and a GUI script which uses the DBus API, and no documentation at all except maybe something from doxygen. I do not mind people who edit config files being second-class citizens, but I guess at some point things will become essentially like Windows.<br> <p> </div> Fri, 09 Apr 2010 16:15:27 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382900/ https://lwn.net/Articles/382900/ vonbrand <blockquote> "Make everything as simple as possible, but not simpler." <br> -- Albert Einstein </blockquote> The SysV style is certainly simple (and the BSDish idea of one humongous script is even simpler), but has been found wanting. In particular, today's systems have to react to hardware appearing and dissapearing ("probe, configure, and set up at boot" is not enough anymore) and a host of other random events. It does make sense to try to bring them all under one roof. Fri, 09 Apr 2010 15:36:43 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382897/ https://lwn.net/Articles/382897/ mdz@debian.org <div class="FormattedComment"> It doesn't really matter whether symlinks or files are used; your point is that the start/stop configuration is separate from the script. You're right that upstart doesn't have that separation at present, and both are stored in the job configuration file. This does complicate the creation of tools to manage services.<br> <p> However, upstart's method is quite sufficient for the scenario which was described above, i.e. switching a job to "manual mode". These files virtually never change in post-release updates, so this is a minor consideration.<br> <p> In response to your final point, Ubuntu 10.04 LTS still uses a "hybrid" arrangement, just as 9.10 did, though a few more jobs have been migrated to upstart.<br> </div> Fri, 09 Apr 2010 15:24:46 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382896/ https://lwn.net/Articles/382896/ vonbrand <p> Please look at the bug's discussion. Here the real "wishlist" item is modifying <code>upstart</code> so that it isn't necessary to add a lot of boilerplate code to each script. This boilerplate is currently in charge of cheching sanity, and thus critical (and being repetitive and boring, easy to get wrong). Fri, 09 Apr 2010 15:14:47 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382894/ https://lwn.net/Articles/382894/ vonbrand <p> That <em>stops</em> the job at hand, doesn't <em>disable</em> it... It boils down to what is more reasonable to do on next boot with a job that was stopped on shudown: <ul> <li> Each boot should offer the same configuration, set permanently in some way. That a particular job was or not running on shutdown is inconsecuential. <li> A reboot is simply a temporary service interruption, it makes sense to keep stopped jobs stopped, and so on. </ul> The first above is easier to handle, and has the benefit that a reboot gets you into a known good state (so a reboot is useful to unwedge a machine, also in case it got its jobs messed up in some unknown way). Fri, 09 Apr 2010 15:10:24 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382893/ https://lwn.net/Articles/382893/ vonbrand <p> The fix is at hand, the problem is to get all the users to upgrade their wetware... Fri, 09 Apr 2010 15:00:10 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382892/ https://lwn.net/Articles/382892/ rilder <div class="FormattedComment"> I have found upstart violating the KISS principle. SysV init is simple and easy to configure. Hooks can be added to it.<br> <p> "over tasks such as or plugging in external devices like thumb drives (currently handled by udev and hal), or running programs at specific times (currently handled by cron)."<br> <p> -- this is where the problem lies.. Do not try to do more than one thing and fail at everything(eventually).<br> </div> Fri, 09 Apr 2010 15:00:00 +0000 Deleting the whole file system https://lwn.net/Articles/382887/ https://lwn.net/Articles/382887/ clugstj <div class="FormattedComment"> This bug deletes your whole file system and he (Scott James Remnant) responds that you shouldn't run the script in question by hand without giving it some obscure command line option, implying that it's not a bug. Then he complains that people get upset at him? I don't understand what kind of a response he thinks he will get when he acts like this.<br> </div> Fri, 09 Apr 2010 14:35:03 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382885/ https://lwn.net/Articles/382885/ kreijack <div class="FormattedComment"> Of course by hand everything is possible. But what happens if you update the package ? The system asked you to decide which scripts (the old one with your configuration, and the new one with the default configuration) have to maintain.. <br> <p> With the sysV soft-link approach, the package-manager is able to update the script leaving the start/stop configuration untouched. With upstart this is a step backward.<br> <p> A tool which want to manage the services, has to modify a file... From a packager POV this is a mess.<br> <p> I don't want to say that upstart is fully wrong, but there are some "design issue" which have to be resolved. To me the point is that upstart is too young to be used in a LTS (long term support) distribution.<br> <p> Debian (for example) still use the old sysv approach (at the time an hybrid: upstart + sysv links); the same is true for Ubuntu 9.10<br> <p> <p> </div> Fri, 09 Apr 2010 14:25:00 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382889/ https://lwn.net/Articles/382889/ MattPerry <div class="FormattedComment"> It's still marked as wishlist. One bug can affect multiple projects so if you look at the top, mountall has a fix applied while upstart still sees it as wishlist.<br> </div> Fri, 09 Apr 2010 14:24:23 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382879/ https://lwn.net/Articles/382879/ mdz@debian.org I discovered that with sysvinit it not possible to switch a job to "manual mode". Even though a job is stopped via the command <pre> # /etc/init.d/<i>jobname</i>; stop </pre> in the next reboot the it will be restarted. <p> It is possible to move the /etc/rc?.d/S??<i>jobname</i> file to another location in order to avoid the "automatic" behavior... <hr> Seriously, though...this is easy to do with upstart. The /etc/init/<i>jobname</i>.conf file describes precisely which events will cause the job to be started and stopped. If you don't specify any such events (i.e. comment out the "start on" and "stop on" lines), then it won't be started automatically. <p> So by commenting out these lines, you get the behavior you want: it won't start at boot time, but "start <i>jobname</i>" and "stop <i>jobname</i>" will still work. Fri, 09 Apr 2010 14:03:29 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382884/ https://lwn.net/Articles/382884/ MisterIO <div class="FormattedComment"> After this I definitely have doubts about this thing! Not because of the bug itself, but because of the discussion that took place there. The maintainer at a certain point flagged that bug as _wishlist_! I certainly don't want to have anything running on my pc wrote by someone who thinks that kind of bug is of the whishlist class.<br> </div> Fri, 09 Apr 2010 14:03:09 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382877/ https://lwn.net/Articles/382877/ cesarb <div class="FormattedComment"> <font class="QuotedText">&gt; this is a perennial Unix problem</font><br> <p> Nobody uses set -u? (set -eu is even better)<br> </div> Fri, 09 Apr 2010 13:46:06 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382876/ https://lwn.net/Articles/382876/ nix <div class="FormattedComment"> Yeah, but /etc/init is a name-clash with 1980s-vintage Unix systems, while /etc/init.d would be a name-clash with *actual* running systems *now*. Since 'init' is plainly a good basename for init scripts, the solution chosen looks good to me.<br> <p> </div> Fri, 09 Apr 2010 13:37:21 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382869/ https://lwn.net/Articles/382869/ marcH <div class="FormattedComment"> A different problem I often face is when I start/kill frequently a service under development in order to test it. At some point upstart will flag it as unstable and refuse to start it. My current workaround (shame) is to reboot the machine.<br> <p> Maybe upstart should consider that a command run from a tty is always right?<br> </div> Fri, 09 Apr 2010 11:58:23 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382868/ https://lwn.net/Articles/382868/ marcH Please let me rephrase: <p> I am glad they stopped naming the <strong>jobs</strong> directory "<strong>event</strong>.d" Fri, 09 Apr 2010 11:53:00 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382859/ https://lwn.net/Articles/382859/ stumbles I've not used upstart but if it behaves as you say, I would call that a regression or at least unacceptable. Fri, 09 Apr 2010 11:03:39 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382853/ https://lwn.net/Articles/382853/ kreijack <div class="FormattedComment"> I discovered that with upstart it not possible to switch a job to "manual mode". Even though a job is stopped via the command <br> <p> # stop &lt;jobname&gt;<br> <p> in the next reboot the it will be restarted.<br> <p> It is possible to move the init/&lt;jobname&gt;.conf file to another location in order to avoid the "automatic" behavior. But so it is not possible to start it manually via the "start" and "stop" command. <br> <p> To me it seems a big regression to the old SysV init script. I am alone to think that ?<br> <p> Moreover the last time that I tried it, I discovered that my ubuntu 10.4 (bat is a beta) when booted in single mode, mysql was running ! <br> <p> <br> </div> Fri, 09 Apr 2010 10:36:53 +0000 Ubuntu's Success Story: the Upstart Startup Manager (LinuxPlanet) https://lwn.net/Articles/382849/ https://lwn.net/Articles/382849/ nix <div class="FormattedComment"> Now all we need is a fix for the flaw that causes hordes of people to charge into bug reports flaming madly about a bug that, uh, had already been fixed. (It's also the 'most serious' bug they'd ever encountered, which tells me they weren't running Solaris in the 90s, when there was at least one security patch release that did an rm -rf / by mistake through a very similar uninitialized-shell-script-variable flaw... this is a perennial Unix problem.)<br> <p> </div> Fri, 09 Apr 2010 09:46:40 +0000