2012-10-25 21:37:15 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2016-12-03 17:24:37 +00:00
|
|
|
# 2010-2016 Nico Schottelius (nico-cdist at schottelius.org)
|
2016-03-10 19:20:41 +00:00
|
|
|
# 2016 Darko Poljak (darko.poljak at gmail.com)
|
2012-10-25 21:37:15 +00:00
|
|
|
#
|
|
|
|
# This file is part of cdist.
|
|
|
|
#
|
|
|
|
# cdist 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 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# cdist 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 cdist. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2016-11-30 22:19:53 +00:00
|
|
|
import collections
|
|
|
|
import logging
|
2016-03-10 19:20:41 +00:00
|
|
|
|
2016-11-30 22:19:53 +00:00
|
|
|
|
2012-10-25 21:37:15 +00:00
|
|
|
def commandline():
|
|
|
|
"""Parse command line"""
|
|
|
|
|
2016-12-03 17:24:37 +00:00
|
|
|
import cdist.argparse
|
2012-10-25 21:37:15 +00:00
|
|
|
import cdist.banner
|
|
|
|
import cdist.config
|
2013-08-29 20:32:26 +00:00
|
|
|
import cdist.install
|
2013-08-07 07:24:10 +00:00
|
|
|
import cdist.shell
|
2016-03-18 22:34:02 +00:00
|
|
|
import shutil
|
|
|
|
import os
|
2012-10-25 21:37:15 +00:00
|
|
|
|
2016-12-03 17:24:37 +00:00
|
|
|
parser = cdist.argparse.get_parsers()
|
2012-10-25 21:37:15 +00:00
|
|
|
args = parser['main'].parse_args(sys.argv[1:])
|
|
|
|
|
2016-11-30 22:19:53 +00:00
|
|
|
# Loglevels are handled globally in here
|
2016-12-03 17:24:37 +00:00
|
|
|
retval = cdist.argparse.handle_loglevel(args)
|
|
|
|
if retval:
|
|
|
|
log.warning(retval)
|
2016-05-22 07:22:39 +00:00
|
|
|
|
2012-10-25 21:37:15 +00:00
|
|
|
log.debug(args)
|
2013-08-21 16:52:35 +00:00
|
|
|
log.info("version %s" % cdist.VERSION)
|
Remove ugly argumentparser bug
Before:
[21:09] bento:~% cdist
Traceback (most recent call last):
File "/home/users/nico/p/cdist/cdist/bin/../scripts/cdist", line 232, in <module>
commandline()
File "/home/users/nico/p/cdist/cdist/bin/../scripts/cdist", line 106, in commandline
args.func(args)
AttributeError: 'Namespace' object has no attribute 'func'
After:
[21:11] bento:~% cdist
usage: cdist [-h] [-d] [-v] [-V] {banner,config} ...
cdist 2.1.1-48-gfd72c60
optional arguments:
-h, --help show this help message and exit
-d, --debug Set log level to debug
-v, --verbose Set log level to info, be more verbose
-V, --version Show version
Commands:
{banner,config}
Get cdist at http://www.nico.schottelius.org/software/cdist/
[21:11] bento:~%
Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
2013-06-07 19:10:57 +00:00
|
|
|
|
|
|
|
# Work around python 3.3 bug:
|
|
|
|
# http://bugs.python.org/issue16308
|
|
|
|
# http://bugs.python.org/issue9253
|
2013-08-07 16:49:47 +00:00
|
|
|
|
|
|
|
# FIXME: catching AttributeError also hides
|
|
|
|
# real problems.. try a different way
|
|
|
|
|
|
|
|
# FIXME: we always print main help, not
|
|
|
|
# the help of the actual parser being used!
|
Remove ugly argumentparser bug
Before:
[21:09] bento:~% cdist
Traceback (most recent call last):
File "/home/users/nico/p/cdist/cdist/bin/../scripts/cdist", line 232, in <module>
commandline()
File "/home/users/nico/p/cdist/cdist/bin/../scripts/cdist", line 106, in commandline
args.func(args)
AttributeError: 'Namespace' object has no attribute 'func'
After:
[21:11] bento:~% cdist
usage: cdist [-h] [-d] [-v] [-V] {banner,config} ...
cdist 2.1.1-48-gfd72c60
optional arguments:
-h, --help show this help message and exit
-d, --debug Set log level to debug
-v, --verbose Set log level to info, be more verbose
-V, --version Show version
Commands:
{banner,config}
Get cdist at http://www.nico.schottelius.org/software/cdist/
[21:11] bento:~%
Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
2013-06-07 19:10:57 +00:00
|
|
|
try:
|
2013-08-07 16:49:47 +00:00
|
|
|
getattr(args, "func")
|
Remove ugly argumentparser bug
Before:
[21:09] bento:~% cdist
Traceback (most recent call last):
File "/home/users/nico/p/cdist/cdist/bin/../scripts/cdist", line 232, in <module>
commandline()
File "/home/users/nico/p/cdist/cdist/bin/../scripts/cdist", line 106, in commandline
args.func(args)
AttributeError: 'Namespace' object has no attribute 'func'
After:
[21:11] bento:~% cdist
usage: cdist [-h] [-d] [-v] [-V] {banner,config} ...
cdist 2.1.1-48-gfd72c60
optional arguments:
-h, --help show this help message and exit
-d, --debug Set log level to debug
-v, --verbose Set log level to info, be more verbose
-V, --version Show version
Commands:
{banner,config}
Get cdist at http://www.nico.schottelius.org/software/cdist/
[21:11] bento:~%
Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
2013-06-07 19:10:57 +00:00
|
|
|
except AttributeError:
|
|
|
|
parser['main'].print_help()
|
2013-08-07 16:49:47 +00:00
|
|
|
sys.exit(0)
|
|
|
|
|
2016-12-03 17:24:37 +00:00
|
|
|
cdist.argparse.check_beta(vars(args))
|
2013-08-07 16:49:47 +00:00
|
|
|
args.func(args)
|
2012-10-25 21:37:15 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
import sys
|
|
|
|
|
|
|
|
cdistpythonversion = '3.2'
|
|
|
|
if sys.version < cdistpythonversion:
|
2016-12-03 17:24:37 +00:00
|
|
|
print('Python >= {} is required on the source host.'.format(
|
|
|
|
cdistpythonversion), file=sys.stderr)
|
2012-10-25 21:37:15 +00:00
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
exit_code = 0
|
|
|
|
|
|
|
|
try:
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import cdist
|
2013-08-18 23:38:28 +00:00
|
|
|
import cdist.log
|
2012-10-25 21:37:15 +00:00
|
|
|
|
2013-08-18 23:38:28 +00:00
|
|
|
logging.setLoggerClass(cdist.log.Log)
|
2012-10-25 21:37:15 +00:00
|
|
|
logging.basicConfig(format='%(levelname)s: %(message)s')
|
2013-08-18 23:38:28 +00:00
|
|
|
log = logging.getLogger("cdist")
|
2012-10-25 21:37:15 +00:00
|
|
|
|
|
|
|
if re.match("__", os.path.basename(sys.argv[0])):
|
2013-09-02 08:49:11 +00:00
|
|
|
import cdist.emulator
|
|
|
|
emulator = cdist.emulator.Emulator(sys.argv)
|
|
|
|
emulator.run()
|
2012-10-25 21:37:15 +00:00
|
|
|
else:
|
|
|
|
commandline()
|
|
|
|
|
|
|
|
except KeyboardInterrupt:
|
2013-08-21 16:52:35 +00:00
|
|
|
exit_code = 2
|
2012-10-25 21:37:15 +00:00
|
|
|
|
|
|
|
except cdist.Error as e:
|
|
|
|
log.error(e)
|
|
|
|
exit_code = 1
|
|
|
|
|
|
|
|
sys.exit(exit_code)
|