diff options
Diffstat (limited to 'cloudinit/config/cc_ssh.py')
| -rw-r--r-- | cloudinit/config/cc_ssh.py | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/cloudinit/config/cc_ssh.py b/cloudinit/config/cc_ssh.py index 5bd2dec6..d24e43c0 100644 --- a/cloudinit/config/cc_ssh.py +++ b/cloudinit/config/cc_ssh.py @@ -30,9 +30,10 @@ from cloudinit import distros as ds  from cloudinit import ssh_util  from cloudinit import util -DISABLE_ROOT_OPTS = ("no-port-forwarding,no-agent-forwarding," -"no-X11-forwarding,command=\"echo \'Please login as the user \\\"$USER\\\" " -"rather than the user \\\"root\\\".\';echo;sleep 10\"") +DISABLE_ROOT_OPTS = ( +    "no-port-forwarding,no-agent-forwarding," +    "no-X11-forwarding,command=\"echo \'Please login as the user \\\"$USER\\\"" +    " rather than the user \\\"root\\\".\';echo;sleep 10\"")  GENERATE_KEY_NAMES = ['rsa', 'dsa', 'ecdsa', 'ed25519']  KEY_FILE_TPL = '/etc/ssh/ssh_host_%s_key' | 
