diff scripts/install.sh @ 1506:d80395468b4e

ssl security in code
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 15 May 2020 18:29:47 -0600
parents 04482e2a6ca3
children 39d2be9784ab
line wrap: on
line diff
--- a/scripts/install.sh	Thu May 14 15:49:45 2020 -0600
+++ b/scripts/install.sh	Fri May 15 18:29:47 2020 -0600
@@ -6,9 +6,8 @@
 
 cat >/usr/local/bin/luan <<End
 for i in `pwd`/jars/* ; do CLASSPATH=\$CLASSPATH:\$i ; done
-SECURITY=`pwd`/jvm.java.security;
 
-java -classpath \$CLASSPATH -Djava.security.properties="\$SECURITY" luan.Luan "\$@"
+java -classpath \$CLASSPATH luan.Luan "\$@"
 End
 
 chmod +x /usr/local/bin/luan