neomaster 1.66 KB
Newer Older
Yoshinori Okuji's avatar
Yoshinori Okuji committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#! /usr/bin/env python
#
# neomaster - run a master node of NEO
#
# Copyright (C) 2006  Nexedi SA
# 
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

from optparse import OptionParser
Yoshinori Okuji's avatar
Yoshinori Okuji committed
22
from neo.master.app import Application
23
from neo import DEFAULT_LOG_FORMAT
Yoshinori Okuji's avatar
Yoshinori Okuji committed
24 25 26 27
import logging


parser = OptionParser()
Yoshinori Okuji's avatar
Yoshinori Okuji committed
28 29
parser.add_option('-v', '--verbose', action = 'store_true', 
                  help = 'print verbose messages')
Yoshinori Okuji's avatar
Yoshinori Okuji committed
30 31
parser.add_option('-c', '--config', help = 'specify a configuration file')
parser.add_option('-s', '--section', help = 'specify a configuration section')
Aurel's avatar
Aurel committed
32
parser.add_option('-l', '--logfile', help = 'specify a logging file')
Yoshinori Okuji's avatar
Yoshinori Okuji committed
33 34 35 36 37

(options, args) = parser.parse_args()

config = options.config or 'neo.conf'
section = options.section or 'master'
Aurel's avatar
Aurel committed
38
logfile = options.logfile or None
Yoshinori Okuji's avatar
Yoshinori Okuji committed
39

Yoshinori Okuji's avatar
Yoshinori Okuji committed
40
if options.verbose:
41
    logging.basicConfig(filename=logfile, level=logging.DEBUG, format=DEFAULT_LOG_FORMAT)
Yoshinori Okuji's avatar
Yoshinori Okuji committed
42
else:
43
    logging.basicConfig(filename=logfile, level=logging.WARNING, format=DEFAULT_LOG_FORMAT)
Yoshinori Okuji's avatar
Yoshinori Okuji committed
44

Yoshinori Okuji's avatar
Yoshinori Okuji committed
45
app = Application(config, section)
Yoshinori Okuji's avatar
Yoshinori Okuji committed
46
app.run()