aboutsummaryrefslogtreecommitdiff
blob: 37d609b61b1c9230d29430abfe1c78fcf5d046d3 (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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
#
# $Header$

"""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,
    'debug': False
}

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