blob: 26cc382b29e6bf1d476b7c3ec3230790411e16c4 [file] [log] [blame]
Zack Williamseda6d4c2018-05-30 14:22:42 -07001#!/usr/bin/env python
Scott Bakeredbb2322018-05-08 11:46:25 -07002
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
Scott Bakeredbb2322018-05-08 11:46:25 -070017# Runs the standard XOS synchronizer
18
Scott Bakeredbb2322018-05-08 11:46:25 -070019import os
Scott Bakerc6ed1c42019-01-29 16:57:10 -080020from xossynchronizer import Synchronizer
Scott Bakeredbb2322018-05-08 11:46:25 -070021from xosconfig import Config
22
Scott Bakerc6ed1c42019-01-29 16:57:10 -080023base_config_file = os.path.abspath(os.path.dirname(os.path.realpath(__file__)) + '/simpleexampleservice_config.yaml')
24mounted_config_file = os.path.abspath(os.path.dirname(os.path.realpath(__file__)) + '/mounted_config.yaml')
Scott Bakeredbb2322018-05-08 11:46:25 -070025
Scott Bakerc6ed1c42019-01-29 16:57:10 -080026if os.path.isfile(mounted_config_file):
27 Config.init(base_config_file, 'synchronizer-config-schema.yaml', mounted_config_file)
28else:
29 Config.init(base_config_file, 'synchronizer-config-schema.yaml')
30
31Synchronizer().run()
32
Scott Bakeredbb2322018-05-08 11:46:25 -070033