From 2638f8bf17da06144331b3db2c942c09c081d7c4 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Fri, 17 Nov 2006 13:19:41 +0100 Subject: [PATCH] /linuxrc: replace tr with sed command, thanks for the fix - Wolfgang Karall! --- debian/changelog | 7 +++++++ linuxrc | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 06ffcf3..98c70ff 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +grml-terminalserver (0.73) unstable; urgency=low + + * /linuxrc: replace tr with sed command, thanks for the fix - + Wolfgang Karall! + + -- Michael Prokop Fri, 17 Nov 2006 13:18:52 +0100 + grml-terminalserver (0.72) unstable; urgency=low Maintenance release: diff --git a/linuxrc b/linuxrc index d145c92..70eb0e3 100755 --- a/linuxrc +++ b/linuxrc @@ -526,7 +526,7 @@ if [ -n "$NFS" ]; then KERNELVER=`uname -r` for mod in `find /lib/modules/$KERNELVER/kernel/drivers/net/ -name \*.ko` ; do - echo `basename $mod | tr -d \.ko` >> /modules.load + echo `basename $mod | sed -e 's/\.ko$//'` >> /modules.load done modules_to_load=`cat /modules.load | xargs` -- 2.1.4