diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/image.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 32df01d2b3..79de5a2cae 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -285,8 +285,8 @@ zap_empty_root_password () { | |||
285 | # allow dropbear/openssh to accept root logins and logins from accounts with an empty password string | 285 | # allow dropbear/openssh to accept root logins and logins from accounts with an empty password string |
286 | ssh_allow_empty_password () { | 286 | ssh_allow_empty_password () { |
287 | if [ -e ${IMAGE_ROOTFS}${sysconfdir}/ssh/sshd_config ]; then | 287 | if [ -e ${IMAGE_ROOTFS}${sysconfdir}/ssh/sshd_config ]; then |
288 | sed -i 's#.*PermitRootLogin.*#PermitRootLogin yes#' ${IMAGE_ROOTFS}${sysconfdir}/ssh/sshd_config | 288 | sed -i 's/^[#[:space:]]*PermitRootLogin.*/PermitRootLogin yes/' ${IMAGE_ROOTFS}${sysconfdir}/ssh/sshd_config |
289 | sed -i 's#.*PermitEmptyPasswords.*#PermitEmptyPasswords yes#' ${IMAGE_ROOTFS}${sysconfdir}/ssh/sshd_config | 289 | sed -i 's/^[#[:space:]]*PermitEmptyPasswords.*/PermitEmptyPasswords yes/' ${IMAGE_ROOTFS}${sysconfdir}/ssh/sshd_config |
290 | fi | 290 | fi |
291 | 291 | ||
292 | if [ -e ${IMAGE_ROOTFS}${sbindir}/dropbear ] ; then | 292 | if [ -e ${IMAGE_ROOTFS}${sbindir}/dropbear ] ; then |