CVS: theedge/bin lvu,1.27,1.28
sofar at lunar-linux.org
sofar at lunar-linux.org
Mon Jul 14 22:38:22 GMT 2003
Update of /var/cvs/lunar/theedge/bin
In directory dbguin.lunar-linux.org:/tmp/cvs-serv23434/bin
Modified Files:
lvu
Log Message:
Preliminary bugrelease, fixing hopefully the wrong strings in the updatelog, fixing the failed reports bug, and several other improvments that were quite needed.
Index: lvu
===================================================================
RCS file: /var/cvs/lunar/theedge/bin/lvu,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- lvu 13 Jul 2003 20:49:54 -0000 1.27
+++ lvu 14 Jul 2003 22:38:20 -0000 1.28
@@ -237,8 +237,7 @@
echo "<tr><th colspan=5><font color="maroon">$SECTION</font></th></tr>"
for MODULE in `list_modules $SECTION`; do
(
- [ -x $MOONBASE/$SECTION/$MODULE/DETAILS ] &&
- . $MOONBASE/$SECTION/$MODULE/DETAILS 1>/dev/null
+ run_module_file $MODULE DETAILS &> /dev/null
echo "<tr>"
if [ "$MODULE" == "linux" ] ||
[ "$MODULE" == "glibc" ]; then
@@ -347,10 +346,8 @@
long_search() {
for SECTION in `list_sections`; do
for MODULE in `list_modules $SECTION`; do
- (
- SCRIPT_DIRECTORY=$MOONBASE/$SECTION/$MODULE &&
- [ -x $MOONBASE/$SECTION/$MODULE/DETAILS ] &&
- . $MOONBASE/$SECTION/$MODULE/DETAILS |
+ (
+ run_module_file $MODULE DETAILS |
grep -q -i "$1" &&
echo "$SECTION/$MODULE"
)
@@ -876,9 +873,7 @@
what)
if [ ! -z "$2" ] ; then
(
- if run_details $2 && SECTION=$(find_section $2) ; then
- . $MOONBASE/$SECTION/$2/DETAILS
- fi
+ run_module_file $2 DETAILS
)
fi
;;
More information about the Lunar-commits
mailing list