aboutsummaryrefslogtreecommitdiff
blob: ab9ce9d53011de50f4bdcfc3b283bac492dd204a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/python
#
# Copyright 2003-2004 Karl Trygve Kalleberg
# Copyright 2003-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

"""Gentoolkit is a collection of administration scripts for Gentoo"""

import sys

CONFIG = {
    # Color handling: -1: Use Portage settings, 0: Force off, 1: Force on
    "color": -1,
    # Guess piping output:
    "piping": False if sys.stdout.isatty() else True,
    # Set some defaults:
    "quiet": False,
    # verbose is True if not quiet and not piping
    "verbose": True,
    "debug": False,
}

# vim: set ts=8 sw=4 tw=79: