diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2017-06-29 11:31:47 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-09 22:48:38 +0100 |
commit | fbf465c07d12ae7f7822e6961f8cf61fd5f14e56 (patch) | |
tree | 610525a88ab3147041b8c1c36ff2713a53630f4d /meta/recipes-core | |
parent | 7c1adcc6d7e00c5b2ea427c7a023dc9faee40582 (diff) | |
download | poky-fbf465c07d12ae7f7822e6961f8cf61fd5f14e56.tar.gz |
dropbear: add default config file to disable root login
root login is disabled by default for openssh and we can
enable it through IMAGE_FEATURES 'debug-tweaks' or
'allow-empty-password', so change to the same default
behavior for dropbear.
(From OE-Core rev: d3e69fa2fef83015658aa5fa1442bab5a8c3edaa)
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/dropbear/dropbear.inc | 3 | ||||
-rw-r--r-- | meta/recipes-core/dropbear/dropbear/dropbear.default | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-core/dropbear/dropbear.inc b/meta/recipes-core/dropbear/dropbear.inc index a5dcab882b..2e2fbc15af 100644 --- a/meta/recipes-core/dropbear/dropbear.inc +++ b/meta/recipes-core/dropbear/dropbear.inc | |||
@@ -19,6 +19,7 @@ SRC_URI = "http://matt.ucc.asn.au/dropbear/releases/dropbear-${PV}.tar.bz2 \ | |||
19 | file://dropbearkey.service \ | 19 | file://dropbearkey.service \ |
20 | file://dropbear@.service \ | 20 | file://dropbear@.service \ |
21 | file://dropbear.socket \ | 21 | file://dropbear.socket \ |
22 | file://dropbear.default \ | ||
22 | ${@bb.utils.contains('DISTRO_FEATURES', 'pam', '${PAM_SRC_URI}', '', d)} " | 23 | ${@bb.utils.contains('DISTRO_FEATURES', 'pam', '${PAM_SRC_URI}', '', d)} " |
23 | 24 | ||
24 | PAM_SRC_URI = "file://0005-dropbear-enable-pam.patch \ | 25 | PAM_SRC_URI = "file://0005-dropbear-enable-pam.patch \ |
@@ -62,6 +63,8 @@ do_install() { | |||
62 | ${D}${sbindir} \ | 63 | ${D}${sbindir} \ |
63 | ${D}${localstatedir} | 64 | ${D}${localstatedir} |
64 | 65 | ||
66 | install -m 0644 ${WORKDIR}/dropbear.default ${D}${sysconfdir}/default/dropbear | ||
67 | |||
65 | install -m 0755 dropbearmulti ${D}${sbindir}/ | 68 | install -m 0755 dropbearmulti ${D}${sbindir}/ |
66 | ln -s ${sbindir}/dropbearmulti ${D}${bindir}/dbclient | 69 | ln -s ${sbindir}/dropbearmulti ${D}${bindir}/dbclient |
67 | 70 | ||
diff --git a/meta/recipes-core/dropbear/dropbear/dropbear.default b/meta/recipes-core/dropbear/dropbear/dropbear.default new file mode 100644 index 0000000000..522453a86c --- /dev/null +++ b/meta/recipes-core/dropbear/dropbear/dropbear.default | |||
@@ -0,0 +1,2 @@ | |||
1 | # Disallow root logins by default | ||
2 | DROPBEAR_EXTRA_ARGS="-w" | ||