-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add fuseesbdemo; clean up after jon server install
- Loading branch information
dmurphy
committed
Jun 5, 2014
1 parent
a6dfd8b
commit a5ee980
Showing
7 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
products/ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM jboss-base | ||
|
||
MAINTAINER David Murphy <[email protected]> | ||
|
||
# Install Fuse | ||
ADD products / | ||
ADD files/apache-maven-3.2.1-bin.tar.gz / | ||
|
||
# Configure supervisor | ||
|
||
CMD supervisord -n |
Empty file.
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/sh | ||
#rhq-ant input properties: | ||
#rhq.deploy.dir is the root installation directory for the bundle and is the minimum required input property | ||
#run.maven.builds=y will build the web application using mvn. You will need to have "mvn" in your path | ||
#rhq.deploy.clean=true deletes everything in the deployment directory(e.g. rhq.deploy.dir property) and provisions the bundle in a clean directory | ||
# | ||
bold=`tput smso` | ||
offbold=`tput rmso` | ||
|
||
echo "If you see the message ${bold} Operating system must be Linux and x86_64 ${offbold}, then modify the deploy.xml on line 59 to match your operating system and chipset architecture" | ||
echo "There are examples within the deploy.xml for operating systems and chipsets" | ||
|
||
if [ "x$JAVA_HOME" = "x" ]; then | ||
read -p "Please set your JAVA_HOME environment e.g. JAVA_HOME=/home/workshop/jdk1.7.0_25...Press Enter to exit" | ||
exit 1 | ||
fi | ||
|
||
export PATH="`pwd`/installer/bin:$JAVA_HOME/bin:$PATH": | ||
/bin/chmod 775 installer/bin/rhq-ant | ||
rhq-ant -Drhq.deploy.dir=/opt/jboss -Drun.maven.builds=y -Drhq.deploy.clean=true |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[program:tomcat] | ||
command=/opt/jboss/jboss-ews-2.0/tomcat7/bin/startup.sh | ||
user=jboss | ||
redirect_stderr=true |
This file contains 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