Skip to content

Commit

Permalink
change director order in log-bosh
Browse files Browse the repository at this point in the history
  • Loading branch information
ogrand committed Apr 29, 2019
1 parent 5c1c8d9 commit 078e0c5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/log-bosh
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@ else
printf "%b1%b : micro\n" "${GREEN}${BOLD}" "${STD}"
printf "%b2%b : master\n" "${GREEN}${BOLD}" "${STD}"
printf "%b3%b : ops\n" "${GREEN}${BOLD}" "${STD}"
printf "%b4%b : kubo\n" "${GREEN}${BOLD}" "${STD}"
printf "%b5%b : coab\n" "${GREEN}${BOLD}" "${STD}"
printf "%b4%b : coab\n" "${GREEN}${BOLD}" "${STD}"
printf "%b5%b : kubo\n" "${GREEN}${BOLD}" "${STD}"
printf "%b6%b : ondemand\n" "${GREEN}${BOLD}" "${STD}"
printf "%b7%b : expe\n" "${GREEN}${BOLD}" "${STD}"
printf "\n%bYour choice :%b " "${GREEN}${BOLD}" "${STD}" ; read choice
case "${choice}" in
1) BOSH_TARGET="micro" ;;
2) BOSH_TARGET="master" ;;
3) BOSH_TARGET="ops" ;;
4) BOSH_TARGET="kubo" ;;
5) BOSH_TARGET="coab" ;;
4) BOSH_TARGET="coab" ;;
5) BOSH_TARGET="kubo" ;;
6) BOSH_TARGET="ondemand" ;;
7) BOSH_TARGET="expe" ;;
*) flag=0 ; clear ;;
Expand Down

0 comments on commit 078e0c5

Please sign in to comment.