Blame bin/dnf.in

Packit 6f3914
#!@PYTHON_EXECUTABLE@
Packit 6f3914
# The dnf executable script.
Packit 6f3914
#
Packit 6f3914
# Copyright (C) 2012-2016 Red Hat, Inc.
Packit 6f3914
#
Packit 6f3914
# This copyrighted material is made available to anyone wishing to use,
Packit 6f3914
# modify, copy, or redistribute it subject to the terms and conditions of
Packit 6f3914
# the GNU General Public License v.2, or (at your option) any later version.
Packit 6f3914
# This program is distributed in the hope that it will be useful, but WITHOUT
Packit 6f3914
# ANY WARRANTY expressed or implied, including the implied warranties of
Packit 6f3914
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
Packit 6f3914
# Public License for more details.  You should have received a copy of the
Packit 6f3914
# GNU General Public License along with this program; if not, write to the
Packit 6f3914
# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
Packit 6f3914
# 02110-1301, USA.  Any Red Hat trademarks that are incorporated in the
Packit 6f3914
# source code or documentation are not subject to the GNU General Public
Packit 6f3914
# License and may only be used or replicated with the express permission of
Packit 6f3914
# Red Hat, Inc.
Packit 6f3914
#
Packit 6f3914
Packit 6f3914
from __future__ import unicode_literals
Packit 6f3914
import sys
Packit 6f3914
Packit 6f3914
Packit 6f3914
def suppress_keyboard_interrupt_message():
Packit 6f3914
    """Prevent unsightly KeyboardInterrupt tracebacks.
Packit 6f3914
Packit 6f3914
    Nothing will be printed to the terminal after an uncaught
Packit 6f3914
    :class:`exceptions.KeyboardInterrupt`.
Packit 6f3914
Packit 6f3914
    """
Packit 6f3914
    old_excepthook = sys.excepthook
Packit 6f3914
Packit 6f3914
    def new_hook(type, value, traceback):
Packit 6f3914
        if type != KeyboardInterrupt:
Packit 6f3914
            old_excepthook(type, value, traceback)
Packit 6f3914
        else:
Packit 6f3914
            pass
Packit 6f3914
Packit 6f3914
    sys.excepthook = new_hook
Packit 6f3914
Packit 6f3914
Packit 6f3914
# do this ASAP to prevent tracebacks after ^C during imports
Packit 6f3914
suppress_keyboard_interrupt_message()
Packit 6f3914
Packit 6f3914
if __name__ != "__main__":
Packit 6f3914
    sys.stderr.write('The executable DNF module must not be imported.')
Packit 6f3914
    sys.exit(1)
Packit 6f3914
Packit 6f3914
here = sys.path[0]
Packit 6f3914
if here != '/usr/bin':
Packit 6f3914
    # git checkout
Packit 6f3914
    import os
Packit 6f3914
    dnf_toplevel = os.path.dirname(here)
Packit 6f3914
    sys.path[0] = dnf_toplevel
Packit 6f3914
Packit 6f3914
from dnf.cli import main
Packit 6f3914
main.user_main(sys.argv[1:], exit_code=True)