You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2018/12/15 18:44:41 UTC

svn commit: r1849002 - in /ofbiz/tools/demo-backup: old-manual.sh stable-manual.sh trunk.sh

Author: jleroux
Date: Sat Dec 15 18:44:40 2018
New Revision: 1849002

URL: http://svn.apache.org/viewvc?rev=1849002&view=rev
Log:
Improved:  Remove the embedded self signed certificate on demos (but R13.07) 
(OFBIZ-9659)

Removes the embedded self signed certificate (useful for localhost usage) on 
demos to prevent using ports. Else it shows a certificate exception (non signed) 
when actually we have a letsencrytp certificate for demos

Modified:
    ofbiz/tools/demo-backup/old-manual.sh
    ofbiz/tools/demo-backup/stable-manual.sh
    ofbiz/tools/demo-backup/trunk.sh

Modified: ofbiz/tools/demo-backup/old-manual.sh
URL: http://svn.apache.org/viewvc/ofbiz/tools/demo-backup/old-manual.sh?rev=1849002&r1=1849001&r2=1849002&view=diff
==============================================================================
--- ofbiz/tools/demo-backup/old-manual.sh (original)
+++ ofbiz/tools/demo-backup/old-manual.sh Sat Dec 15 18:44:40 2018
@@ -2,8 +2,11 @@
 
 cd /home/ofbizDemo/branch13.7
 svn up
+rm /home/ofbizDemo/branch13.7/framework/base/config/*.jks
+rm /home/ofbizDemo/branch13.7/framework/base/config/jesse.properties
 ./ant stop -Dportoffset=20000
 ./ant clean-all
 ./ant load-demo
 ./ant svninfo
 ./ant start-batch-secure -Dportoffset=20000
+

Modified: ofbiz/tools/demo-backup/stable-manual.sh
URL: http://svn.apache.org/viewvc/ofbiz/tools/demo-backup/stable-manual.sh?rev=1849002&r1=1849001&r2=1849002&view=diff
==============================================================================
--- ofbiz/tools/demo-backup/stable-manual.sh (original)
+++ ofbiz/tools/demo-backup/stable-manual.sh Sat Dec 15 18:44:40 2018
@@ -1,11 +1,12 @@
 #!/bin/sh
 
-echo This does not work, see OFBIZ-10287. You need for now to use all-manual-nicely.sh
+cd /home/ofbizDemo/branch16.11
+svn up
+rm /home/ofbizDemo/branch16.11/framework/base/config/*.jks
+rm /home/ofbizDemo/branch16.11/framework/base/config/jesse.properties
+./gradlew --no-daemon "ofbiz --shutdown --portoffset 10000"
+./gradlew --no-daemon cleanAll
+./gradlew --no-daemon "ofbiz --load-data"
+./gradlew --no-daemon svnInfoFooter
+./gradlew --no-daemon "ofbizBackground --start --portoffset 10000"
 
-#~ cd /home/ofbizDemo/branch16.11
-#~ svn up
-#~ ./gradlew --no-daemon "ofbiz --shutdown --portoffset 10000"
-#~ ./gradlew --no-daemon cleanAll
-#~ ./gradlew --no-daemon "ofbiz --load-data"
-#~ ./gradlew --no-daemon svnInfoFooter
-#~ ./gradlew --no-daemon "ofbizBackground --start --portoffset 10000"

Modified: ofbiz/tools/demo-backup/trunk.sh
URL: http://svn.apache.org/viewvc/ofbiz/tools/demo-backup/trunk.sh?rev=1849002&r1=1849001&r2=1849002&view=diff
==============================================================================
--- ofbiz/tools/demo-backup/trunk.sh (original)
+++ ofbiz/tools/demo-backup/trunk.sh Sat Dec 15 18:44:40 2018
@@ -2,9 +2,12 @@
 
 cd /home/ofbizDemo/trunk
 svn up
+rm /home/ofbizDemo/trunk/framework/base/config/*.jks
+rm /home/ofbizDemo/trunk/framework/base/config/jesse.properties
 ./gradlew --no-daemon pullAllPluginsSource
 ./gradlew --no-daemon terminateOfbiz
 ./gradlew --no-daemon cleanAll
 ./gradlew --no-daemon loadAll
 ./gradlew --no-daemon svnInfoFooter
 ./gradlew --no-daemon ofbizBackground
+