Hello together,
thanks to my starter license, I'm unable to file an issue to the staff directly.
When I want to start Crowd 3.0.2 via start_crowd.sh, I'm running into an issue because of a syntax error in the .sh-script.
...
if [ "$PRGRUNMODE" == "true" ] ; then
exec apache-tomcat/bin/catalina.sh run "$@"
else
...
Crowd starts successfully but the script ends with an error: start_crowd.sh: 12: [: unexpected operator
Solution: Remove one of the two equals in if condition block (the other if conditions do all have only one equal character).
...
if [ "$PRGRUNMODE" = "true" ] ; then
exec apache-tomcat/bin/catalina.sh run "$@"
else
...
Could someone file a bug for this issue?
Thanks!
Hi @Fabian Laule!
Thanks for reporting this issue and I am sorry for any inconvenience caused by it.
We are tracking this problem here CWD-4988.
Best Regards,
Marcin Kempa
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.