diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/crm | 56 |
1 files changed, 56 insertions, 0 deletions
@@ -0,0 +1,56 @@ +#!/usr/bin/python3 +# +# crmsh, command line interface for Linux HA clusters +# Copyright (C) 2008-2015 Dejan Muhamedagic <dmuhamedagic@suse.de> +# Copyright (C) 2013-2015 Kristoffer Gronlund <kgronlund@suse.com> +# +# 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. +# + +import sys + +if int(sys.version[0]) < 3: + sys.stderr.write("Abort: crmsh only support python3\n") + sys.exit(-1) + +try: + from crmsh import log + if '-h' not in sys.argv and '--help' not in sys.argv: + log.setup_logging() + else: + log.setup_logging(only_help=True) + + from crmsh import main +except ImportError as msg: + sys.stderr.write('''Fatal error: + %s + +Failed to start crmsh! This is likely due to: +- A missing dependency (eg. corresponding python3 version) +- A broken installation + +If you are using a packaged version of crmsh, please try +reinstalling the package. Also check your PYTHONPATH and +make sure that the crmsh module is reachable. + +Please file an issue describing your installation at +https://github.com/Clusterlabs/crmsh/issues/ . +''' % (msg)) + sys.exit(-1) + +rc = main.run() +sys.exit(rc) + +# vim:ts=4:sw=4:et: |