# mach system configuration file                                 -*- python -*-

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

# directories used
# don't change roots, archives 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',
    'packages': '/var/cache/mach/packages',
    'archives': '/var/cache/mach/archives',
}

# default root
config['defaultroot'] = 'redhat-9-i386'

# 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
'''
}
