[Lunar-commits] CVS: theedge/var/lib/lunar/functions config.lunar, 1.10, 1.11

Jerry Lundström prox at lunar-linux.org
Thu Apr 8 13:25:39 GMT 2004


Update of /var/cvs/lunar/theedge/var/lib/lunar/functions
In directory dbguin.lunar-linux.org:/tmp/cvs-serv5583

Modified Files:
	config.lunar 
Log Message:
fixed issue with list of initscript being return with quotes

Index: config.lunar
===================================================================
RCS file: /var/cvs/lunar/theedge/var/lib/lunar/functions/config.lunar,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- config.lunar	23 Mar 2004 09:49:05 -0000	1.10
+++ config.lunar	8 Apr 2004 13:25:37 -0000	1.11
@@ -49,7 +49,7 @@
 
 get_config() {
   if [ -f $1 ] ; then
-    cat $1 | grep -w "$2=.*" | cut -d= -f2-
+    cat $1 | grep -w "$2=.*" | cut -d= -f2- | sed 's/"//g'
   fi
 }
 



More information about the Lunar-commits mailing list