[00:34] bootchart indicates those numbers are realistic [00:34] (boot is even longer with sreadahead if it goes in the background) [02:50] Hi, I'm new to Ubuntu and (brand) new to upstart. I'm hoping to use upstart to launch a few shell scripts and I'm having a hard time [02:50] Anyone on that could help me? [02:57] Justin___: just ask your questions [02:59] First of several. This script will work when I run it manually from console, but it isn't (apparently) launching at runlevel 2 [03:00] start on runlevel 2 [03:00] start on runlevel 3 [03:00] start on runlevel 4 [03:00] start on runlevel 5 [03:00] stop on runlevel 0 [03:00] stop on runlevel 1 [03:00] stop on runlevel 6 [03:00] script [03:00] cd /usr/share/atlassian/crowd [03:00] ./start_crowd.sh [03:00] end script [03:00] Justin___: which upstart version do you use? [03:01] 0.6.3 [03:02] multiple start on stanzas are not allowed in upstart 0.6 [03:02] use "start on runlevel [2345]" [03:02] stop on runlevel [016] [03:02] instead [03:05] nice [03:05] thanks [03:08] Q #2: similar theme, but this one doesn't work automatically or manually (but it claims 'started' and gives a pid) [03:08] description "Starts JIRA when the computer starts" [03:08] start on runlevel [2345] [03:08] stop on runlevel [!2345] [03:08] script [03:08] end script [03:08] oops, got truncated [03:09] description "Starts JIRA when the computer starts" [03:09] start on runlevel [2345] [03:09] stop on runlevel [!2345] [03:09] script [03:09] \/usr/share/atlassian/jira/bin/startup.sh [03:09] end script [03:20] Justin___: if it's a one time task [03:21] add the "task" keyword [03:21] It is, yeah. (it exits when done) [03:21] then make a separate job for the analagous shutdown.sh? (with start on 01?)