From 61687db23d182ad24ee0851da299b964e1fde88f Mon Sep 17 00:00:00 2001 From: iSergio Date: Mon, 14 May 2018 12:35:13 +0300 Subject: [PATCH] Separeted deploy script (cluster|standalone) --- jboss/bin/dodeploy | 6 +++--- jboss/bin/dodeploy-cluster | 2 ++ jboss/bin/dodeploy-standalone | 2 ++ 3 files changed, 7 insertions(+), 3 deletions(-) create mode 100755 jboss/bin/dodeploy-cluster create mode 100755 jboss/bin/dodeploy-standalone diff --git a/jboss/bin/dodeploy b/jboss/bin/dodeploy index 9f632d8..2975221 100755 --- a/jboss/bin/dodeploy +++ b/jboss/bin/dodeploy @@ -1,5 +1,5 @@ #!/bin/bash -CONTROLLER=172.16.0.104:9999 +CONTROLLER=172.16.0.2:9999 VERBOSE=false @@ -25,9 +25,9 @@ for (( i=0; i < ${#files[@]}; i++ )); do file=${files[$i]} # Try assign on all server groups if [[ $VERBOSE == false ]]; then - result=`jboss-cli.sh --controller=$CONTROLLER --connect --commands="deploy "\""$file"\"" --all-server-groups" 2>&1` + result=`jboss-cli.sh --controller=$CONTROLLER --connect --commands="deploy "\""$file"\"" --server-groups=$2" 2>&1` else - jboss-cli.sh --controller=$CONTROLLER --connect --commands="deploy "\""$file"\"" --all-server-groups" + jboss-cli.sh --controller=$CONTROLLER --connect --commands="deploy "\""$file"\"" --server-groups=$2" fi exit_code=$? align_left "$DOTSTRING" "$file" diff --git a/jboss/bin/dodeploy-cluster b/jboss/bin/dodeploy-cluster new file mode 100755 index 0000000..e6aa675 --- /dev/null +++ b/jboss/bin/dodeploy-cluster @@ -0,0 +1,2 @@ +#!/bin/bash +dodeploy $1 "cluster-server-group" diff --git a/jboss/bin/dodeploy-standalone b/jboss/bin/dodeploy-standalone new file mode 100755 index 0000000..70a9352 --- /dev/null +++ b/jboss/bin/dodeploy-standalone @@ -0,0 +1,2 @@ +#!/bin/bash +dodeploy $1 "standalone-server-group" -- GitLab