In this changeset, I implemented the main logic although this is mainly a shameful copy/paste of Nova's blueprint https://blueprints.launchpad.net/nova/+spec/centralize-config-options Partially Implements: blueprint centralise-config-opts Change-Id: Ib645ad5da5c706336bb6ac37e85b027d05665c32
42 lines
1.1 KiB
Python
42 lines
1.1 KiB
Python
# -*- encoding: utf-8 -*-
|
|
#
|
|
# Copyright (c) 2016 Intel
|
|
#
|
|
# Authors: Tomasz Kaczynski <tomasz.kaczynski@intel.com>
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
"""Script for the sync tool."""
|
|
|
|
import sys
|
|
|
|
from oslo_log import log as logging
|
|
|
|
from watcher._i18n import _LI
|
|
from watcher.common import service as service
|
|
from watcher import conf
|
|
from watcher.decision_engine import sync
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
CONF = conf.CONF
|
|
|
|
|
|
def main():
|
|
LOG.info(_LI('Watcher sync started.'))
|
|
|
|
service.prepare_service(sys.argv, CONF)
|
|
syncer = sync.Syncer()
|
|
syncer.sync()
|
|
|
|
LOG.info(_LI('Watcher sync finished.'))
|