IDEMPIERE-4602 Encrypt passwords on properties files (FHCA-1982) (#847)
Fix installation issue with getVar.sh wrong initial permission
This commit is contained in:
parent
2f0e426771
commit
378e8fb2f3
|
@ -12,6 +12,8 @@ else
|
|||
echo Set JAVA_HOME to the directory of your local JDK.
|
||||
fi
|
||||
|
||||
# setup application requires getVar.sh to be executable
|
||||
find . -name '*.sh' -exec chmod u+x '{}' \;
|
||||
|
||||
# Setup idempiere.properties and idempiereEnv.properties
|
||||
$JAVA -jar plugins/org.eclipse.equinox.launcher_1.*.jar -install setup -configuration setup/configuration -application org.adempiere.install.console-application $@
|
||||
|
|
|
@ -2,6 +2,9 @@
|
|||
#
|
||||
echo Setup idempiere Server
|
||||
|
||||
# setup application requires getVar.sh to be executable
|
||||
find . -name '*.sh' -exec chmod u+x '{}' \;
|
||||
|
||||
# Setup idempiere.properties and idempiereEnv.properties
|
||||
./idempiere --launcher.ini setup.ini -application org.adempiere.install.console-application $@
|
||||
|
||||
|
|
|
@ -12,6 +12,9 @@ else
|
|||
echo Set JAVA_HOME to the directory of your local JDK.
|
||||
fi
|
||||
|
||||
# setup application requires getVar.sh to be executable
|
||||
find . -name '*.sh' -exec chmod u+x '{}' \;
|
||||
|
||||
#setup idempiere.properties and idempiereEnv.propertiess
|
||||
$JAVA -jar plugins/org.eclipse.equinox.launcher_1.*.jar -install setup -configuration setup/configuration -application org.adempiere.install.application $@
|
||||
|
||||
|
|
|
@ -2,6 +2,9 @@
|
|||
#
|
||||
echo ... Setup iDempiere Server
|
||||
|
||||
# setup application requires getVar.sh to be executable
|
||||
find . -name '*.sh' -exec chmod u+x '{}' \;
|
||||
|
||||
# Setup idempiere.properties and iDempiereEnv.properties
|
||||
./idempiere --launcher.ini setup.ini -application org.adempiere.install.application $@
|
||||
|
||||
|
|
|
@ -12,6 +12,8 @@ else
|
|||
echo Set JAVA_HOME to the directory of your local JDK.
|
||||
fi
|
||||
|
||||
# setup application requires getVar.sh to be executable
|
||||
find . -name '*.sh' -exec chmod u+x '{}' \;
|
||||
|
||||
# Setup idempiere.properties and idempiereEnv.properties
|
||||
$JAVA -jar plugins/org.eclipse.equinox.launcher_1.*.jar -install setup -configuration setup/configuration -application org.adempiere.install.silent-application $@
|
||||
|
|
|
@ -2,6 +2,9 @@
|
|||
#
|
||||
echo Setup idempiere Server
|
||||
|
||||
# setup application requires getVar.sh to be executable
|
||||
find . -name '*.sh' -exec chmod u+x '{}' \;
|
||||
|
||||
# Setup idempiere.properties and idempiereEnv.properties
|
||||
./idempiere --launcher.ini setup.ini -application org.adempiere.install.silent-application $@
|
||||
|
||||
|
|
Loading…
Reference in New Issue