2003-06-16 15:33:38 +02:00
|
|
|
#include "globals.hh"
|
|
|
|
#include "db.hh"
|
|
|
|
|
|
|
|
|
2003-07-15 18:28:54 +02:00
|
|
|
string dbPath2Id = "path2id";
|
|
|
|
string dbId2Paths = "id2paths";
|
2003-07-04 14:18:06 +02:00
|
|
|
string dbSuccessors = "successors";
|
2003-07-10 15:41:28 +02:00
|
|
|
string dbSubstitutes = "substitutes";
|
|
|
|
|
2003-06-16 15:33:38 +02:00
|
|
|
|
2003-06-27 15:55:12 +02:00
|
|
|
string nixStore = "/UNINIT";
|
2003-07-10 15:41:28 +02:00
|
|
|
string nixDataDir = "/UNINIT";
|
2003-06-16 15:33:38 +02:00
|
|
|
string nixLogDir = "/UNINIT";
|
|
|
|
string nixDB = "/UNINIT";
|
|
|
|
|
|
|
|
|
|
|
|
void initDB()
|
|
|
|
{
|
2003-07-15 18:28:54 +02:00
|
|
|
createDB(nixDB, dbPath2Id);
|
|
|
|
createDB(nixDB, dbId2Paths);
|
2003-07-04 14:18:06 +02:00
|
|
|
createDB(nixDB, dbSuccessors);
|
2003-07-10 15:41:28 +02:00
|
|
|
createDB(nixDB, dbSubstitutes);
|
2003-06-16 15:33:38 +02:00
|
|
|
}
|