[Lunar-commits] r14897 - brutus/trunk/nestu/modutils-wrappers
Jaime Buffery
nestu at lunar-linux.org
Sat May 21 10:29:48 UTC 2005
Author: nestu
Date: 2005-05-21 10:29:47 +0000 (Sat, 21 May 2005)
New Revision: 14897
Modified:
brutus/trunk/nestu/modutils-wrappers/module-init-tools
brutus/trunk/nestu/modutils-wrappers/modutils
brutus/trunk/nestu/modutils-wrappers/shared
Log:
Changing cat << EOF >&2, since on read-only media it apparently b0rks, for our beloved echo >&2 builtin
Modified: brutus/trunk/nestu/modutils-wrappers/module-init-tools
===================================================================
--- brutus/trunk/nestu/modutils-wrappers/module-init-tools 2005-05-21 10:15:57 UTC (rev 14896)
+++ brutus/trunk/nestu/modutils-wrappers/module-init-tools 2005-05-21 10:29:47 UTC (rev 14897)
@@ -22,13 +22,11 @@
fi
done
-cat << EOF >&2
-ERROR: This is a only wrapper script. The ${BIN} binary
-you requested is not installed. Please
+echo "ERROR: This is a only wrapper script. The ${BIN} binary " >&2
+echo "you requested is not installed. Please " >&2
+echo " " >&2
+echo " lin module-init-tools " >&2
+echo " " >&2
+echo "now to install ${BIN} for your currently running 2.6 kernel." >&2
- lin module-init-tools
-
-now to install ${BIN} for your currently running 2.6 kernel.
-EOF
-
exit 1;
Modified: brutus/trunk/nestu/modutils-wrappers/modutils
===================================================================
--- brutus/trunk/nestu/modutils-wrappers/modutils 2005-05-21 10:15:57 UTC (rev 14896)
+++ brutus/trunk/nestu/modutils-wrappers/modutils 2005-05-21 10:29:47 UTC (rev 14897)
@@ -22,13 +22,11 @@
fi
done
-cat << EOF >&2
-ERROR: This is a only wrapper script. The ${BIN} binary
-you requested is not installed. Please
+echo "ERROR: This is a only wrapper script. The ${BIN} binary " >&2
+echo "you requested is not installed. Please " >&2
+echo " " >&2
+echo " lin modutils " >&2
+echo " " >&2
+echo "now to install ${BIN} for your currently running 2.4 kernel. " >&2
- lin modutils
-
-now to install ${BIN} for your currently running 2.4 kernel.
-EOF
-
exit 1;
Modified: brutus/trunk/nestu/modutils-wrappers/shared
===================================================================
--- brutus/trunk/nestu/modutils-wrappers/shared 2005-05-21 10:15:57 UTC (rev 14896)
+++ brutus/trunk/nestu/modutils-wrappers/shared 2005-05-21 10:29:47 UTC (rev 14897)
@@ -25,13 +25,11 @@
fi
done
-cat << EOF >&2
-ERROR: This is a only wrapper script. The ${BIN}
-binary you requested is not installed. Please
+echo "ERROR: This is a only wrapper script. The ${BIN} " >&2
+echo "binary you requested is not installed. Please " >&2
+echo " " >&2
+echo " lin ${MTYPE} " >&2
+echo " " >&2
+echo "now to install ${BIN} for your currently running ${KVER} kernel." >&2
- lin ${MTYPE}
-
-now to install ${BIN} for your currently running ${KVER} kernel.
-EOF
-
exit 1;
More information about the Lunar-commits
mailing list