From: Wojciech Izykowski Date: Sat, 6 Apr 2013 14:33:00 +0000 (+0200) Subject: lxc-start-ephemeral: fixed bug with wrong ssh option (-k instead of -i) X-Git-Tag: lxc-1.0.0.alpha1~1^2~319 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33892746e373449a8a69a4265d783bf701cb5784;p=thirdparty%2Flxc.git lxc-start-ephemeral: fixed bug with wrong ssh option (-k instead of -i) Corrected ssh option for custom key (from -k to -i). Just see ssh manpage for justification. Signed-off-by: Wojciech Izykowski Acked-by: Serge E. Hallyn --- diff --git a/src/lxc/lxc-start-ephemeral.in b/src/lxc/lxc-start-ephemeral.in index d1bb6be45..bed86e6d2 100644 --- a/src/lxc/lxc-start-ephemeral.in +++ b/src/lxc/lxc-start-ephemeral.in @@ -287,7 +287,7 @@ if args.user: cmd += ["-l", args.user] if args.key: - cmd += ["-k", args.key] + cmd += ["-i", args.key] for ip in ips: ssh_cmd = cmd + [ip] + args.command