Repository: incubator-stratos Updated Branches: refs/heads/master 6e36780a3 -> 163dfcc3c
fixing typos Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/163dfcc3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/163dfcc3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/163dfcc3 Branch: refs/heads/master Commit: 163dfcc3c3888beb5bf74fdb5c0a6186aac6ee63 Parents: 6e36780 Author: Nirmal Fernando <[email protected]> Authored: Tue Apr 15 00:13:10 2014 +0530 Committer: Nirmal Fernando <[email protected]> Committed: Tue Apr 15 00:13:10 2014 +0530 ---------------------------------------------------------------------- tools/stratos-installer/setup.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/163dfcc3/tools/stratos-installer/setup.sh ---------------------------------------------------------------------- diff --git a/tools/stratos-installer/setup.sh b/tools/stratos-installer/setup.sh index 2760d64..4f551a8 100755 --- a/tools/stratos-installer/setup.sh +++ b/tools/stratos-installer/setup.sh @@ -217,17 +217,17 @@ function cc_setup() { # AS related functions # ------------------------------------------------------------------- function as_related_popup() { - while read -p "Please provide Auto Scalar ip:" as_ip + while read -p "Please provide Autoscaler IP:" as_ip do if !(valid_ip $as_ip); then - echo "Please provide valid ips for AS" + echo "Please provide valid IPs for AS" else export as_ip break fi done - while read -p "Please provide Auto Scala hostname:" as_hostname + while read -p "Please provide Autoscaler Hostname:" as_hostname do if [[ -z $as_hostname ]]; then echo "Please specify valid hostname for AS" @@ -237,7 +237,7 @@ function as_related_popup() { fi done - while read -p "Please provide Auto Scala port offset:" as_port_offset + while read -p "Please provide Autoscaler port offset:" as_port_offset do if [[ -z $as_port_offset ]]; then echo "Please specify the port offset of AS" @@ -265,7 +265,7 @@ function as_conf_validate() { # Setup AS function as_setup() { echo "Setup AS" >> $LOG - echo "Configuring the Auto Scalar" + echo "Configuring the Autoscaler" cp -f ./config/all/repository/conf/autoscaler.xml $stratos_extract_path/repository/conf/ @@ -278,7 +278,7 @@ function as_setup() { sed -i "s@SM_LISTEN_PORT@$as_sm_https_port@g" repository/conf/autoscaler.xml popd - echo "End configuring the Auto scalar" + echo "End configuring the Autoscaler" }
