Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-04-13 | Add a Config class to simplify adding configuration settings | Eelco Dolstra | |
The typical use is to inherit Config and add Setting<T> members: class MyClass : private Config { Setting<int> foo{this, 123, "foo", "the number of foos to use"}; Setting<std::string> bar{this, "blabla", "bar", "the name of the bar"}; MyClass() : Config(readConfigFile("/etc/my-app.conf")) { std::cout << foo << "\n"; // will print 123 unless overriden } }; Currently, this is used by Store and its subclasses for store parameters. You now get a warning if you specify a non-existant store parameter in a store URI. | |||
2017-03-16 | ssh:// -> ssh-ng://, legacy-ssh:// -> ssh:// | Eelco Dolstra | |
2017-03-03 | Improve SSH handling | Eelco Dolstra | |
* Unify SSH code in SSHStore and LegacySSHStore. * Fix a race starting the SSH master. We now wait synchronously for the SSH master to finish starting. This prevents the SSH clients from starting their own connections. * Don't use a master if max-connections == 1. * Add a "max-connections" store parameter. * Add a "compress" store parameter. | |||
2017-02-07 | Merge branch 'nix-copy-closure-c++' of https://github.com/shlevy/nix | Eelco Dolstra | |
2017-02-07 | SSHStore: uri -> host | Eelco Dolstra | |
2017-02-01 | Restore default signal handling in child processes | Eelco Dolstra | |
In particular, this fixes Ctrl-C in nix-shell sessions. | |||
2017-01-20 | nix-copy-closure: Implement in C++. | Shea Levy | |
Tests fail currently because the database is not given proper hashes in the VM | |||
2016-11-10 | build-remote: Implement in C++ | Shea Levy | |
2016-09-12 | ssh-store: Start master on-demand | Shea Levy | |
2016-09-12 | Inline ssh-store.hh into ssh-store.cc | Shea Levy | |
2016-09-02 | Add ssh store implementation | Shea Levy | |