Commitubuntu/focal3b2eeb0171
wrongly backported a change to not modify /etc/ssh/sshd_config . The correct fix from ubuntu/master is3b2eeb0171
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. (cherry picked from commit434b21e202
)
parent
31730b7f6c
commit
85fa04c107
@ -1,5 +1,8 @@
|
||||
#!/bin/bash
|
||||
|
||||
cat << EOF >> "/etc/ssh/sshd_config.d/10-cloudimg-settings.conf"
|
||||
# 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
|
||||
|
Loading…
Reference in new issue