summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2020-06-15 17:18:00 +0200
committerThomas Deutschmann <whissi@gentoo.org>2020-06-15 19:04:51 +0200
commitb3d1b0139a3fb021e934d8a096c6728e15552613 (patch)
treebfcbf84c1799eb7a5fee63a652a7cba026633e52 /gen_initramfs.sh
parentgen_initramfs.sh: copy_system_binaries(): Don't check for non-existing linked... (diff)
downloadgenkernel-b3d1b0139a3fb021e934d8a096c6728e15552613.tar.gz
genkernel-b3d1b0139a3fb021e934d8a096c6728e15552613.tar.bz2
genkernel-b3d1b0139a3fb021e934d8a096c6728e15552613.zip
gen_initramfs.sh: append_dropbear(): Fix error message shown when net-misc/dropbear is required
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'gen_initramfs.sh')
-rwxr-xr-xgen_initramfs.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/gen_initramfs.sh b/gen_initramfs.sh
index 46b924d..651bfbf 100755
--- a/gen_initramfs.sh
+++ b/gen_initramfs.sh
@@ -1239,8 +1239,8 @@ append_dropbear() {
then
print_info 3 "$(get_indent 2)${PN}: >> Will use existing '${dropbear_command}' program from path to create missing keys ..."
else
- local error_msg="Need to generate '${required_host_keys[*]}' but '${dropbear_command}'"
- error_msg=" program is missing. Please install net-misc/dropbear and re-run genkernel!"
+ local error_msg="Need to generate '${required_dropbear_host_keys[*]}' but '${dropbear_command}'"
+ error_msg+=" program is missing. Please install net-misc/dropbear and re-run genkernel!"
gen_die "${error_msg}"
fi