Modify Jenkins OpenSSH Key Format for Gerrit
Newer versions of openssh generate private keys in an 'openssh' format
(see man 1 ssh-keygen: -o option), and not the classic PEM format.
The PEM format is needed by the SSH library Jenkins uses (JSch) in order
to read the private key from disk for the Gerrit plugin.
This fixes the error seen from the logs:
IOException:
com.jcraft.jsch.JSchException: invalid privatekey
Note: This was not changed in the Ansible task for generating user SSH
keys, as there does not appear to be a way to specify the key format.
Change-Id: I978f59b25f0ae17f56e03e898f896971c4c4b424
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>