diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2018-08-03T16·12+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2018-08-03T19·20+0200 |
commit | 4e7d5f660cec6da3a432c726dfe7a579c7581c79 (patch) | |
tree | d845533d968bc44a0bb7fcb842ddd31ce40d2d16 /src/libstore/ssh.hh | |
parent | e268bbc05435d8121275136934a594fc70a73da9 (diff) |
SSHMaster: Bypass SSH when connecting to localhost
This is primarily useful for testing since it removes the need to have SSH working.
Diffstat (limited to 'src/libstore/ssh.hh')
-rw-r--r-- | src/libstore/ssh.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstore/ssh.hh b/src/libstore/ssh.hh index 1268e6d00054..4f0f0bd29f9f 100644 --- a/src/libstore/ssh.hh +++ b/src/libstore/ssh.hh @@ -10,6 +10,7 @@ class SSHMaster private: const std::string host; + bool fakeSSH; const std::string keyFile; const bool useMaster; const bool compress; |