mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-08-17 11:44:10 +00:00
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
|