12 lines
222 B
Bash
Executable file
12 lines
222 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ "x$WILDFLY_HOME" = "x" ]; then
|
|
WILDFLY_HOME="/usr/share/wildfly"
|
|
fi
|
|
|
|
if [[ "$1" == "domain" ]]; then
|
|
$WILDFLY_HOME/bin/domain.sh -c $2 -b $3
|
|
else
|
|
$WILDFLY_HOME/bin/standalone.sh -c $2 -b $3
|
|
fi
|
|
|