Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 1 | package exec |
| 2 | |
| 3 | const ( |
Cosmos Nicolaou | e664f3f | 2014-10-20 17:40:05 -0700 | [diff] [blame] | 4 | 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 Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 18 | ) |