commit 38164332e198f7cc8f339b42d555796918de04b3 try to disallow ssh-client install for without proper options. But ssh-client will fail installation with --sshkey for publickey mode
Fix it by refusing to install only when both --ctty and --sshkey are not added in options. Signed-off-by: Dave Young <dyo...@redhat.com> --- modules.d/95ssh-client/module-setup.sh | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules.d/95ssh-client/module-setup.sh b/modules.d/95ssh-client/module-setup.sh index 4410e4e..8d62b2d 100755 --- a/modules.d/95ssh-client/module-setup.sh +++ b/modules.d/95ssh-client/module-setup.sh @@ -50,8 +50,8 @@ inst_sshenv() } install() { - [[ ! $cttyhack = yes ]] && { - derror "ssh interactive mode needs option --ctty!" + [[ ! $cttyhack = yes && ! $sshkey ]] && { + derror "ssh-client needs option --ctty or --sshkey!" return 1 } -- 1.7.7.5 -- To unsubscribe from this list: send the line "unsubscribe initramfs" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html