From: John McGowan Date: Sat, 2 Nov 2019 21:33:59 +0000 (-0600) Subject: Fixing typo in ceph-daemon script for the output_pub_ssh_key argument X-Git-Tag: v15.1.0~1061^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a3ee73d4c990601c491229f6c748ee15921b8e58;p=ceph.git Fixing typo in ceph-daemon script for the output_pub_ssh_key argument Signed-off-by: John McGowan --- diff --git a/src/ceph-daemon b/src/ceph-daemon index 5af55dffab8f..b1ac0b62a733 100755 --- a/src/ceph-daemon +++ b/src/ceph-daemon @@ -1028,7 +1028,7 @@ def command_bootstrap(): tmp_pub.flush() if args.output_pub_ssh_key: - with open(args.output_put_ssh_key, 'w') as f: + with open(args.output_pub_ssh_key, 'w') as f: f.write(ssh_pub) logger.info('Wrote public SSH key to to %s' % args.output_pub_ssh_key)