Changeset 7218e7ce77d425dcf3e8c6e1bea40242315868c4 for settings.py
- Timestamp:
- 02/10/09 20:28:48 (3 years ago)
- Children:
- 4170c22b454a672cea64e02c9199b7099dbc9606
- Parents:
- 8784edeece399f9d7eae5a786ea7a0f30a7732da
- git-committer:
- Frederic Lepied <frederic.lepied@…> (02/10/09 20:28:48)
- Files:
-
- 1 modified
-
settings.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
settings.py
r8784ede r7218e7c 16 16 DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3. 17 17 DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3. 18 19 # pxe related settings 20 21 PXE_ROOT='/var/lib/tftpboot/pxelinux.cfg' 22 PXE_PROFILES = 'profiles' 23 PXE_SUFFIX = '.prof' 24 PXE_LOCAL = 'local' 25 26 # test related settings 27 28 TESTS_DIR = '/home/flepied/work/tests/' 29 TEST_SUFFIX = '.test' 30 TEST_UPLOAD_DIR = '/home/flepied/work/tests/results/' 18 31 19 32 # Local time zone for this installation. Choices can be found here: … … 71 84 # Don't forget to use absolute paths, not relative paths. 72 85 '/home/flepied/work/pxemngr/pxe/templates', 86 '/home/flepied/work/pxemngr/tester/templates', 87 TESTS_DIR, 73 88 ) 74 89 … … 79 94 'django.contrib.sites', 80 95 'pxe', 81 # 'django.contrib.admin', 96 'tester', 97 #'django.contrib.admin', 82 98 ) 83 84 PXE_ROOT='/var/lib/tftpboot/pxelinux.cfg'85 PXE_PROFILES = 'profiles'86 PXE_SUFFIX = '.prof'87 PXE_LOCAL = 'local'
