diff --git a/jboss/bin/dodeploy b/jboss/bin/dodeploy index 9f632d8f27c4501a6d1020bd4cc88452e6c454eb..2975221804df7dbd64a7e9a34a6e02272b39286a 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 0000000000000000000000000000000000000000..e6aa6752c08e27adb414a045886f4e51fee6ccd3 --- /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 0000000000000000000000000000000000000000..70a93526417259ddccc78705c718e0548af02f74 --- /dev/null +++ b/jboss/bin/dodeploy-standalone @@ -0,0 +1,2 @@ +#!/bin/bash +dodeploy $1 "standalone-server-group"