From 4bd2731463230669c7c19c0ee085f3019f3ef169 Mon Sep 17 00:00:00 2001 From: Corentin LABBE Date: Wed, 7 Mar 2018 10:29:25 +0100 Subject: Ensure that tty can be read by cu On some OS, the rights/user from host are not duplicated on guest. So the tty is owned by root and cu could not read it. Force the owning of all tty by uucp --- lava-slave/scripts/start.sh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lava-slave') diff --git a/lava-slave/scripts/start.sh b/lava-slave/scripts/start.sh index dcbbcd7..ec94aee 100755 --- a/lava-slave/scripts/start.sh +++ b/lava-slave/scripts/start.sh @@ -16,6 +16,8 @@ sleep 2 for item in $(ls /etc/conmux/*cf) do echo "Add $item" + # On some OS, the rights/user from host are not duplicated on guest + grep -o '/dev/[a-zA-Z0-9_-]*' $item | xargs chown uucp /usr/sbin/conmux $item & done -- cgit 1.2.3-korg