summaryrefslogtreecommitdiffstats
path: root/scripts/automation/trex_control_plane/client/trex_root_path.py
diff options
context:
space:
mode:
authorYaroslav Brustinov <ybrustin@cisco.com>2016-03-24 20:00:27 +0200
committerYaroslav Brustinov <ybrustin@cisco.com>2016-03-24 20:00:27 +0200
commit59f00264f39dfb95a62401776b4ed8c433682fa7 (patch)
tree96b5411f17faed9f62aa9e4722b29d767d502b1b /scripts/automation/trex_control_plane/client/trex_root_path.py
parent4e8ce34a9ef6b8883cfed47f77c9b753e1cf4248 (diff)
gather stateful client to stf folder, create trex_client package
Diffstat (limited to 'scripts/automation/trex_control_plane/client/trex_root_path.py')
-rw-r--r--scripts/automation/trex_control_plane/client/trex_root_path.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/scripts/automation/trex_control_plane/client/trex_root_path.py b/scripts/automation/trex_control_plane/client/trex_root_path.py
deleted file mode 100644
index de4ec03b..00000000
--- a/scripts/automation/trex_control_plane/client/trex_root_path.py
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/router/bin/python
-
-import os
-import sys
-
-def add_root_to_path ():
- """adds trex_control_plane root dir to script path, up to `depth` parent dirs"""
- root_dirname = 'trex_control_plane'
- file_path = os.path.dirname(os.path.realpath(__file__))
-
- components = file_path.split(os.sep)
- sys.path.append( str.join(os.sep, components[:components.index(root_dirname)+1]) )
- return
-
-add_root_to_path()