Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/genkernel:master commit in: defaults/
Date: Wed, 27 Nov 2019 16:40:22
Message-Id: 1574870723.333b9fe9e3e5aed9e64186bf505a72b43dd8e2f5.whissi@gentoo
1 commit: 333b9fe9e3e5aed9e64186bf505a72b43dd8e2f5
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 27 13:52:20 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 27 16:05:23 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=333b9fe9
7
8 initrd.scripts: start_sshd(): Update binary not found message
9
10 Use same message like we use in similar cases.
11
12 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
13
14 defaults/initrd.scripts | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17 diff --git a/defaults/initrd.scripts b/defaults/initrd.scripts
18 index 33b5199..96ca339 100644
19 --- a/defaults/initrd.scripts
20 +++ b/defaults/initrd.scripts
21 @@ -2258,7 +2258,7 @@ start_sshd() {
22
23 if [ ! -x "/usr/sbin/dropbear" ]
24 then
25 - bad_msg "/usr/sbin/dropbear not found! Did you call genkernel with --ssh parameter?"
26 + bad_msg "/usr/sbin/dropbear not found! Was initramfs built without --ssh parameter?"
27 return
28 fi