blob: 2d1b1a2b696132979d1ce60cd3f853d19655b749 [file] [log] [blame]
Matteo Scandolo48d3d2d2017-08-08 13:05:27 -07001
2# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16
A R Karthick8f930292017-07-07 12:36:22 -070017#
Chetan Gaonker357f4892017-06-19 19:38:27 +000018# Copyright 2016-present Ciena Corporation
19#
20# Licensed under the Apache License, Version 2.0 (the "License");
21# you may not use this file except in compliance with the License.
22# You may obtain a copy of the License at
A R Karthick8f930292017-07-07 12:36:22 -070023#
Chetan Gaonker357f4892017-06-19 19:38:27 +000024# http://www.apache.org/licenses/LICENSE-2.0
A R Karthick8f930292017-07-07 12:36:22 -070025#
Chetan Gaonker357f4892017-06-19 19:38:27 +000026# Unless required by applicable law or agreed to in writing, software
27# distributed under the License is distributed on an "AS IS" BASIS,
28# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29# See the License for the specific language governing permissions and
30# limitations under the License.
31#
32import os,sys
33##add the python path to lookup the utils
34working_dir = os.path.dirname(os.path.realpath(sys.argv[-1]))
35utils_dir = os.path.join(working_dir, '../utils')
36fsm_dir = os.path.join(working_dir, '../fsm')
37subscriber_dir = os.path.join(working_dir, '../subscriber')
A R Karthick8f930292017-07-07 12:36:22 -070038tls_dir = os.path.join(working_dir, '../tls')
39vrouter_dir = os.path.join(working_dir, '../vrouter')
A R Karthick037cb982017-07-07 17:35:30 -070040vsg_dir = os.path.join(working_dir, '../vsg')
Chetan Gaonker357f4892017-06-19 19:38:27 +000041__path__.append(utils_dir)
42__path__.append(fsm_dir)
43__path__.append(subscriber_dir)
44cli_dir = os.path.join(working_dir, '../cli')
45__path__.append(cli_dir)
A R Karthick8f930292017-07-07 12:36:22 -070046__path__.append(tls_dir)
47__path__.append(vrouter_dir)
A R Karthick037cb982017-07-07 17:35:30 -070048__path__.append(vsg_dir)