Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 1239ee4650f3eea1960330bfb2ca5abb > files > 2

mach-0.9.6-1.fc14.x86_64.rpm

# mach system configuration file                                 -*- python -*-
# -*- coding: utf-8 -*-

# These configuration options can be overridden on per-root basis in
# /etc/mach/dist.d

# Spinner theme
config['spinner'] = {
    'wheel':      '/-\|',
    'blip':       '.o0O0o',
    'corner':     '<^>v',
    'text':       '<-WORKING->',
    'subliminal': '<- send us lots of money ->',
    'quote':      "'`" + '"' + "`",
    'point':      ".:':",
}

# Directories
# Don't change roots, archives, cache and states
# they're hardcoded into mach-helper.
config['dirs'] = {
    'states':      '/var/lib/mach/states',
    'roots':       '/var/lib/mach/roots',
    'results':     '/var/tmp/mach',
    'tmps':        '/var/tmp/mach/tmp',
    'aptarchives': '/var/cache/mach/archives',
    'cache':       '/var/cache',
}

# Default root
config['defaultroot'] = 'fedora-14-x86_64-updates'

# Files created in the root
config['files'] = {
    '/etc/resolv.conf': '''
nameserver 192.168.1.1
''',
    '/etc/hosts': '''
127.0.0.1 localhost localhost.localdomain
''',
    '/usr/bin/apt-sigchecker': '''#!/bin/bash
while read p; do
/bin/true
done
'''
}

config['script-success'] = "echo Results:"

# Additional macros
#config['macros'] = {
#    'packager': 'Packager Name <packager@email>',
#    'vendor':   'Vendor name',
#}