Show
Ignore:
Timestamp:
02/10/09 20:28:48 (3 years ago)
Author:
Frederic Lepied <frederic.lepied@…>
Children:
4170c22b454a672cea64e02c9199b7099dbc9606
Parents:
8784edeece399f9d7eae5a786ea7a0f30a7732da
git-committer:
Frederic Lepied <frederic.lepied@…> (02/10/09 20:28:48)
Message:

added a tester module

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • settings.py

    r8784ede r7218e7c  
    1616DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3. 
    1717DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3. 
     18 
     19# pxe related settings 
     20 
     21PXE_ROOT='/var/lib/tftpboot/pxelinux.cfg' 
     22PXE_PROFILES = 'profiles' 
     23PXE_SUFFIX = '.prof' 
     24PXE_LOCAL = 'local' 
     25 
     26# test related settings 
     27 
     28TESTS_DIR = '/home/flepied/work/tests/' 
     29TEST_SUFFIX = '.test' 
     30TEST_UPLOAD_DIR = '/home/flepied/work/tests/results/' 
    1831 
    1932# Local time zone for this installation. Choices can be found here: 
     
    7184    # Don't forget to use absolute paths, not relative paths. 
    7285    '/home/flepied/work/pxemngr/pxe/templates', 
     86    '/home/flepied/work/pxemngr/tester/templates', 
     87    TESTS_DIR, 
    7388) 
    7489 
     
    7994    'django.contrib.sites', 
    8095    'pxe', 
    81 #    'django.contrib.admin', 
     96    'tester', 
     97    #'django.contrib.admin', 
    8298) 
    83  
    84 PXE_ROOT='/var/lib/tftpboot/pxelinux.cfg' 
    85 PXE_PROFILES = 'profiles' 
    86 PXE_SUFFIX = '.prof' 
    87 PXE_LOCAL = 'local'