Changeset 2116 for box/trunk/lib/backupstore/BackupStoreConfigVerify.cpp
- Timestamp:
- 28/03/2008 22:59:28 (4 years ago)
- Location:
- box/trunk
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
lib/backupstore/BackupStoreConfigVerify.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
box/trunk
- Property svn:ignore
-
old new 11 11 release 12 12 runtest.pl 13 .hg
-
- Property svn:ignore
-
box/trunk/lib/backupstore/BackupStoreConfigVerify.cpp
r1777 r2116 17 17 static const ConfigurationVerifyKey verifyserverkeys[] = 18 18 { 19 SERVERTLS_VERIFY_SERVER_KEYS(0) // no default listen addresses 19 SERVERTLS_VERIFY_SERVER_KEYS(ConfigurationVerifyKey::NoDefaultValue) 20 // no default listen addresses 20 21 }; 21 22 … … 33 34 static const ConfigurationVerifyKey verifyrootkeys[] = 34 35 { 35 {"AccountDatabase", 0, ConfigTest_Exists, 0}, 36 {"TimeBetweenHousekeeping", 0, ConfigTest_Exists | ConfigTest_IsInt, 0}, 37 {"ExtendedLogging", "no", ConfigTest_IsBool, 0}, // make value "yes" to enable in config file 36 ConfigurationVerifyKey("AccountDatabase", ConfigTest_Exists), 37 ConfigurationVerifyKey("TimeBetweenHousekeeping", 38 ConfigTest_Exists | ConfigTest_IsInt), 39 ConfigurationVerifyKey("ExtendedLogging", ConfigTest_IsBool, false), 40 // make value "yes" to enable in config file 38 41 39 42 #ifdef WIN32 40 {"RaidFileConf", "", ConfigTest_LastEntry, 0}43 ConfigurationVerifyKey("RaidFileConf", ConfigTest_LastEntry) 41 44 #else 42 {"RaidFileConf", BOX_FILE_RAIDFILE_DEFAULT_CONFIG, ConfigTest_LastEntry, 0} 45 ConfigurationVerifyKey("RaidFileConf", ConfigTest_LastEntry, 46 BOX_FILE_RAIDFILE_DEFAULT_CONFIG) 43 47 #endif 44 45 48 }; 46 49
Note: See TracChangeset
for help on using the changeset viewer.
