mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 18:32:13 +02:00
rootfs-postcommands: fix ssh_allow_empty_password checking
The ssh_allow_empty_password function doesn't check if sshd_config_readonly exists before running sed which can result in an error if sshd_config exists but sshd_config_readonly doesn't. (From OE-Core rev: dc4e3d31852084a75faf224882d1ab19d07de8fe) Signed-off-by: Jonathan Liu <net147@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
96f5f89b49
commit
0011760663
@@ -112,10 +112,12 @@ zap_empty_root_password () {
|
||||
# allow dropbear/openssh to accept root logins and logins from accounts with an empty password string
|
||||
#
|
||||
ssh_allow_empty_password () {
|
||||
if [ -e ${IMAGE_ROOTFS}${sysconfdir}/ssh/sshd_config ]; then
|
||||
sed -i 's/^[#[:space:]]*PermitRootLogin.*/PermitRootLogin yes/' ${IMAGE_ROOTFS}${sysconfdir}/ssh/sshd_config ${IMAGE_ROOTFS}${sysconfdir}/ssh/sshd_config_readonly
|
||||
sed -i 's/^[#[:space:]]*PermitEmptyPasswords.*/PermitEmptyPasswords yes/' ${IMAGE_ROOTFS}${sysconfdir}/ssh/sshd_config ${IMAGE_ROOTFS}${sysconfdir}/ssh/sshd_config_readonly
|
||||
fi
|
||||
for config in sshd_config sshd_config_readonly; do
|
||||
if [ -e ${IMAGE_ROOTFS}${sysconfdir}/ssh/$config ]; then
|
||||
sed -i 's/^[#[:space:]]*PermitRootLogin.*/PermitRootLogin yes/' ${IMAGE_ROOTFS}${sysconfdir}/ssh/$config
|
||||
sed -i 's/^[#[:space:]]*PermitEmptyPasswords.*/PermitEmptyPasswords yes/' ${IMAGE_ROOTFS}${sysconfdir}/ssh/$config
|
||||
fi
|
||||
done
|
||||
|
||||
if [ -e ${IMAGE_ROOTFS}${sbindir}/dropbear ] ; then
|
||||
if grep -q DROPBEAR_EXTRA_ARGS ${IMAGE_ROOTFS}${sysconfdir}/default/dropbear 2>/dev/null ; then
|
||||
|
||||
Reference in New Issue
Block a user