neomaster 1.58 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
Yoshinori Okuji's avatar
Yoshinori Okuji committed
23 24 25 26
import logging


parser = OptionParser()
Yoshinori Okuji's avatar
Yoshinori Okuji committed
27 28
parser.add_option('-v', '--verbose', action = 'store_true', 
                  help = 'print verbose messages')
Yoshinori Okuji's avatar
Yoshinori Okuji committed
29 30
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
31
parser.add_option('-l', '--logfile', help = 'specify a logging file')
Yoshinori Okuji's avatar
Yoshinori Okuji committed
32 33 34 35 36

(options, args) = parser.parse_args()

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

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

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