[06:07] anyone awake? [06:08] I have an executable that doesn't daemonize itself [06:08] so I figured I could use start-stop-daemon [06:09] however, upstart thinks the daemon is dead when it is quite alive [06:09] I'm assuming it's because upstart doesn't know about the pidfile [06:23] Why do you want it to daemonize itself? [06:24] Pid files are a *very* unreliable way to keep track of processes, Upstart ignores such things. [06:29] I see [06:30] I only want it to daemonize so that it won't block the upstart process [06:30] unless I am misunderstanding how upstart works [06:31] It definitely won’t block Upstart. [06:31] interesting [06:32] “exec program-that-doesnt-daemonize” is the most trivial case of running a service. [06:32] wow [06:32] I guess I was making this way too complicated [06:36] if I use env FOO="bar" [06:36] will FOO be accessible by my program? [06:37] just as export FOO="bar" in a shell? [06:48] yeah [06:50] The cookbook has some examples. [06:51] thanks [06:51] I think I [06:51] 've got something that will work [06:51] seems really clean