1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-30 03:23:16 +02:00

* Nix daemon: reload the configuration file after forking (NIX-100).

This commit is contained in:
Eelco Dolstra 2008-11-20 12:25:11 +00:00
parent c202523e53
commit a55113411f
3 changed files with 14 additions and 1 deletions

View file

@ -118,5 +118,12 @@ unsigned int queryIntSetting(const string & name, unsigned int def)
return n;
}
void reloadSettings()
{
settingsRead = false;
settings.clear();
}
}