diff options
author | 2015-10-20 09:15:52 +0300 | |
---|---|---|
committer | 2015-10-20 09:15:52 +0300 | |
commit | 014c1c1757873bbe2b9a9a0d635cb65ea55b67ab (patch) | |
tree | 202fe09b0070f962da1e996673d7db21005a94d8 /scripts/automation/trex_control_plane/common/trex_status.py | |
parent | 51ad078182d17b42a36c239c3c21381eeb3eec85 (diff) | |
parent | 5abe21ffb26a15c2a63e90b5628d704e8211b599 (diff) |
Merge branch 'master-demo'
Diffstat (limited to 'scripts/automation/trex_control_plane/common/trex_status.py')
-rw-r--r-- | scripts/automation/trex_control_plane/common/trex_status.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/automation/trex_control_plane/common/trex_status.py b/scripts/automation/trex_control_plane/common/trex_status.py new file mode 100644 index 00000000..f132720c --- /dev/null +++ b/scripts/automation/trex_control_plane/common/trex_status.py @@ -0,0 +1,8 @@ +#!/router/bin/python + +# define the states in which a T-Rex can hold during its lifetime +# TRexStatus = Enum('TRexStatus', 'Idle Starting Running') + +IDLE = 1 +STARTING = 2 +RUNNING = 3 |