valence/valence/cmd/db_manager.py

40 lines
866 B
Python

#!/usr/bin/env python
# copyright (c) 2016 Intel, Inc.
#
# 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.
import logging
import sys
from valence.db.etcd_db import init_etcd_db
LOG = logging.getLogger(__name__)
def init():
init_etcd_db()
def migrate():
pass
def main(argv):
if argv[1] == 'init':
LOG.info("initialize database")
init()
if __name__ == '__main__':
main(sys.argv)