[21:23] how do i propagate an instance variable to dependent jobs? [21:23] eg, jobs that rely on "start on foo" behavior, and if 'foo' depends on an instance, how can i pass that information along? [22:02] j0sh: you want to start on a particular instance of foo? [22:03] particular instance of foo being started? [22:08] you can do something like: "start on started foo INSTANCE=bar" [22:13] JanC: i need to start on all instances [22:14] i think i figured something Close Enough by exporting the environment variable i'm trying to capture the instance into [22:15] http://upstart.ubuntu.com/cookbook/#standard-environment-variables --> you can probably export those [22:17] yeah but im not sure if the INSTANCE environment variable is exported across dependencies (and i dont know how to check) [22:17] but doing something like this worked okay [22:17] 4 instance $PORT [22:17] 5 export PORT [22:19] is there any way to manipulate that variable, eg arithmetically? [22:27] you can change environment variables in a script section...