This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #ensure tomcat does not start before activemq | |
| #make sure it doesnt start before activemq | |
| ACTIVEMQ=`ps -aux | grep activemq` | |
| echo "ActiveMQ: ${ACTIVEMQ}" | |
| TEST="apache-activemq" | |
| if [[ ${ACTIVEMQ} =~ $TEST ]] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This file is a work around to force a meaningful gist name while the naming issue described at https://github.com/isaacs/github/issues/194 remains unresolved |