1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-21 09:49:36 +01:00

remote_store: register for NIX_REMOTE=unix://path

This allows overriding the socket path so the daemon may be listening at
an arbitrary Unix domain socket location.

Fixes #1800
This commit is contained in:
Spencer Baugh 2018-01-14 21:20:22 -05:00
parent 0c95776c3e
commit 746f8aed86
2 changed files with 26 additions and 2 deletions

View file

@ -134,6 +134,7 @@ class UDSRemoteStore : public LocalFSStore, public RemoteStore
public:
UDSRemoteStore(const Params & params);
UDSRemoteStore(std::string path, const Params & params);
std::string getUri() override;
@ -145,6 +146,7 @@ private:
};
ref<RemoteStore::Connection> openConnection() override;
std::experimental::optional<std::string> path;
};