blob: fde1b8611a275aa5a7167aeffb59d4fc047fe23b [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 Bakerf86c7362019-02-08 09:36:46 -080023base_config_file = os.path.abspath(os.path.dirname(
24 os.path.realpath(__file__)) + '/config.yaml')
25mounted_config_file = os.path.abspath(os.path.dirname(
26 os.path.realpath(__file__)) + '/mounted_config.yaml')
Scott Bakeredbb2322018-05-08 11:46:25 -070027
Scott Bakerc6ed1c42019-01-29 16:57:10 -080028if os.path.isfile(mounted_config_file):
Scott Bakerf86c7362019-02-08 09:36:46 -080029 Config.init(base_config_file, 'synchronizer-config-schema.yaml',
30 mounted_config_file)
Scott Bakerc6ed1c42019-01-29 16:57:10 -080031else:
32 Config.init(base_config_file, 'synchronizer-config-schema.yaml')
33
34Synchronizer().run()