blob: 5b4058fc16e238113ebf1d5107dff888deec0880 [file] [log] [blame]
Jiri Simsa5293dcb2014-05-10 09:56:38 -07001package exec
2
3const (
Cosmos Nicolaoue664f3f2014-10-20 17:40:05 -07004 version1 = "1.0.0"
5 readyStatus = "ready::"
6 failedStatus = "failed::"
7 initStatus = "init"
8
9 // The exec package uses this environment variable to communicate
10 // the version of the protocol being used between the parent and child.
11 // It takes care to clear this variable from the child process'
12 // environment as soon as it can, however, there may still be some
13 // situations where an application may need to test for its presence
14 // or ensure that it doesn't appear in a set of environment variables;
15 // exposing the name of this variable is intended to support such
16 // situations.
17 VersionVariable = "VEYRON_EXEC_VERSION"
Jiri Simsa5293dcb2014-05-10 09:56:38 -070018)