+ Cnf.Set("Dir::Bin::methods","/usr/lib/apt/methods");
+
+ // Read the main config file
+ string FName = Cnf.FindFile("Dir::Etc::main");
+ struct stat Buf;
+ if (stat(FName.c_str(),&Buf) != 0)
+ return true;
+
+ // Read an alternate config file
+ const char *Cfg = getenv("APT_CONFIG");
+
+ // Read both config files, either existing will be OK
+ if ((ReadConfigFile(Cnf,FName) != true) |
+ (ReadConfigFile(Cnf,Cfg) != true))
+ return false;