daemon: Disable use of substitutes for now.

* nix/nix-daemon/guix-daemon.cc (main): Set `settings.useSubstitutes' to
  false, and `settings.substituters' to the empty list.
This commit is contained in:
Ludovic Courtès 2012-12-14 23:51:20 +01:00
parent 4a44e743a0
commit 335dd762cc
1 changed files with 4 additions and 0 deletions

View File

@ -152,6 +152,10 @@ main (int argc, char *argv[])
settings.processEnvironment ();
/* FIXME: Disable substitutes until we have something that works. */
settings.useSubstitutes = false;
settings.substituters.clear ();
argp_parse (&argp, argc, argv, 0, 0, 0);
argvSaved = argv;