Zack Williams | 3c1d120 | 2018-05-30 15:04:44 -0700 | [diff] [blame] | 1 | #!/usr/bin/env python |
Matteo Scandolo | d02b73b | 2017-08-08 13:05:26 -0700 | [diff] [blame] | 2 | |
| 3 | # Copyright 2017-present Open Networking Foundation |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | |
Matteo Scandolo | a4e6e9a | 2016-08-23 12:04:45 -0700 | [diff] [blame] | 17 | # Runs the standard XOS synchronizer |
| 18 | |
| 19 | import importlib |
| 20 | import os |
| 21 | import sys |
Matteo Scandolo | 7c05748 | 2017-06-05 10:40:25 -0700 | [diff] [blame] | 22 | from xosconfig import Config |
| 23 | |
| 24 | config_file = os.path.abspath(os.path.dirname(os.path.realpath(__file__)) + '/vrouter_config.yaml') |
| 25 | |
| 26 | Config.init(config_file, 'synchronizer-config-schema.yaml') |
Matteo Scandolo | a4e6e9a | 2016-08-23 12:04:45 -0700 | [diff] [blame] | 27 | |
Luca Prete | 4259b99 | 2018-05-04 10:02:03 -0700 | [diff] [blame] | 28 | synchronizer_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "../../synchronizers/new_base") |
Matteo Scandolo | a4e6e9a | 2016-08-23 12:04:45 -0700 | [diff] [blame] | 29 | sys.path.append(synchronizer_path) |
| 30 | mod = importlib.import_module("xos-synchronizer") |
| 31 | mod.main() |