mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-10 04:37:29 +00:00
7ed77a5e64
This change triggered a bug in cloud-init (see LP:1968873). cloud-init does not recongnize sshd options set in /etc/ssh/sshd_config.d/ and cloud-init modifies directly /etc/ssh/sshd_config which gets then overwritten by settings from /etc/ssh/sshd_config.d/ . This reverts commit 9a8d7a6e4d7a0b50024df6b92e0711a2f42454a0.
4 lines
101 B
Bash
Executable File
4 lines
101 B
Bash
Executable File
#!/bin/bash
|
|
|
|
sed -i "s|#PasswordAuthentication yes|PasswordAuthentication no|g" /etc/ssh/sshd_config
|