web-3/wildfly/docs/contrib/scripts/systemd/launch.sh
2024-11-26 02:32:07 +03:00

12 lines
217 B
Bash
Executable File

#!/bin/bash
if [ "x$WILDFLY_HOME" = "x" ]; then
WILDFLY_HOME="/opt/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