mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-13 14:27:09 +00:00
Commit 3b2eeb017153cbb wrongly backported a change to not modify /etc/ssh/sshd_config . The correct fix from ubuntu/master is 3b2eeb017153c where the file is named 60-cloudimg-settings.conf instead of 10-cloudimg-settings.conf. This fixes problems with cloud-init which does write 50-cloud-init.conf which should have higher priority than the provided file from the image.
9 lines
267 B
Bash
Executable File
9 lines
267 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# NOTE: the file number needs to be **higher** than the one
|
|
# cloud-init writes (cloud-init uses 50-cloud-init.conf) so
|
|
# the cloud-init file takes precedence
|
|
cat << EOF >> "/etc/ssh/sshd_config.d/60-cloudimg-settings.conf"
|
|
PasswordAuthentication no
|
|
EOF
|