From a3ee73d4c990601c491229f6c748ee15921b8e58 Mon Sep 17 00:00:00 2001 From: John McGowan Date: Sat, 2 Nov 2019 15:33:59 -0600 Subject: [PATCH] Fixing typo in ceph-daemon script for the output_pub_ssh_key argument Signed-off-by: John McGowan --- src/ceph-daemon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ceph-daemon b/src/ceph-daemon index 5af55dffab8..b1ac0b62a73 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)