From 5f497df2d9ec6e5b98715d1613cce13217bf5d16 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Fri, 23 Nov 2007 08:47:13 +0100 Subject: [PATCH] 'fixed remote hook to check on ttyS0 exactly to avoid c0 error messages' --- hooks/arch_remote | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/arch_remote b/hooks/arch_remote index 36bb9409d..814683a87 100644 --- a/hooks/arch_remote +++ b/hooks/arch_remote @@ -9,5 +9,5 @@ run_hook () # fix daemons sed -i -e 's|^DAEMONS=(@syslog-ng)|DAEMONS=(@syslog-ng @network @portmap @sshd @xinetd)|g' /etc/rc.conf # fix serial console - dmesg | grep tty >/dev/null && sed -i -e 's/^#c0/c0/g' /etc/inittab + dmesg | grep ttyS0 >/dev/null && sed -i -e 's/^#c0/c0/g' /etc/inittab }