enable adding keys to agent

This commit is contained in:
Jeffrey C. Ollie 2024-12-18 21:32:17 -06:00
parent 146b706275
commit e2f157647f
Signed by: jeff
GPG key ID: 6F86035A6D97044E

View file

@ -31,6 +31,7 @@ const macs = [_][]const u8{
}; };
const ssh_options = [_]struct { key: []const u8, value: []const u8 }{ const ssh_options = [_]struct { key: []const u8, value: []const u8 }{
.{ .key = "AddKeysToAgent", .value = "yes" },
.{ .key = "ControlMaster", .value = "no" }, .{ .key = "ControlMaster", .value = "no" },
.{ .key = "ControlPath", .value = "none" }, .{ .key = "ControlPath", .value = "none" },
.{ .key = "ForwardAgent", .value = "yes" }, .{ .key = "ForwardAgent", .value = "yes" },