svn commit: r749835 - /ofbiz/trunk/debian/ofbiz-framework.postinst

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r749835 - /ofbiz/trunk/debian/ofbiz-framework.postinst

doogie-3
Author: doogie
Date: Tue Mar  3 23:19:33 2009
New Revision: 749835

URL: http://svn.apache.org/viewvc?rev=749835&view=rev
Log:
$extra has " in it, so we need to use eval to run it.

Modified:
    ofbiz/trunk/debian/ofbiz-framework.postinst

Modified: ofbiz/trunk/debian/ofbiz-framework.postinst
URL: http://svn.apache.org/viewvc/ofbiz/trunk/debian/ofbiz-framework.postinst?rev=749835&r1=749834&r2=749835&view=diff
==============================================================================
--- ofbiz/trunk/debian/ofbiz-framework.postinst (original)
+++ ofbiz/trunk/debian/ofbiz-framework.postinst Tue Mar  3 23:19:33 2009
@@ -103,7 +103,7 @@
  extra="$extra -file=\"$files\""
  fi
  fi
- /etc/init.d/ofbiz install $extra
+ eval /etc/init.d/ofbiz install $extra
  fi
  #rm -f "$tempfile1" "$tempfile2"
 }