5.4.3 #35
24
jigasi.sh
24
jigasi.sh
|
@ -35,7 +35,7 @@ DIST=$(lsb_release -sc)
|
||||||
CHECK_GC_REPO=$(apt-cache policy | grep http | grep cloud-sdk | head -n1 | awk '{print $3}' | awk -F '/' '{print $1}')
|
CHECK_GC_REPO=$(apt-cache policy | grep http | grep cloud-sdk | head -n1 | awk '{print $3}' | awk -F '/' '{print $1}')
|
||||||
|
|
||||||
install_gc_repo() {
|
install_gc_repo() {
|
||||||
if [ "$CHECK_GC_REPO" = "cloud-sdk-$DIST" ]; then
|
if [ "$CHECK_GC_REPO" = "cloud-sdk-$DIST" ]; then
|
||||||
echo "
|
echo "
|
||||||
Google Cloud SDK repository already on the system!
|
Google Cloud SDK repository already on the system!
|
||||||
"
|
"
|
||||||
|
@ -56,14 +56,14 @@ apt-get -y install google-cloud-sdk google-cloud-sdk-app-engine-java
|
||||||
echo "Please select one of the current options:
|
echo "Please select one of the current options:
|
||||||
[1] I want to configure a new project, service account, billing and JSON credentials.
|
[1] I want to configure a new project, service account, billing and JSON credentials.
|
||||||
[2] I already have one project configured and already have a JSON key file from Google"
|
[2] I already have one project configured and already have a JSON key file from Google"
|
||||||
while [[ $SETUP_TYPE != 1 && $SETUP_TYPE != 2 ]]
|
while [[ "$SETUP_TYPE" != "1" && "$SETUP_TYPE" != "2" ]]
|
||||||
do
|
do
|
||||||
read -p "What option suits your setup?: (1 or 2)"$'\n' -r SETUP_TYPE
|
read -p "What option suits your setup?: (1 or 2)"$'\n' -r SETUP_TYPE
|
||||||
if [ $SETUP_TYPE = 1 ]; then
|
if [ "$SETUP_TYPE" = "1" ]; then
|
||||||
echo "We'll setup a GC Projects from scratch"
|
echo "We'll setup a GC Projects from scratch"
|
||||||
elif [ $SETUP_TYPE = 2 ]; then
|
elif [ "$SETUP_TYPE" = "2" ]; then
|
||||||
echo "We'll setup only the proect and JSON key."
|
echo "We'll setup only the proect and JSON key."
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ $SETUP_TYPE = 1 ]; then
|
if [ $SETUP_TYPE = 1 ]; then
|
||||||
|
@ -84,10 +84,10 @@ while [ -z $PROJECT_GC_ID ]
|
||||||
do
|
do
|
||||||
read -p "Enter the project name you just created for Jigasi Speech-to-Text"$'\n' -r GC_PROJECT_NAME
|
read -p "Enter the project name you just created for Jigasi Speech-to-Text"$'\n' -r GC_PROJECT_NAME
|
||||||
if [ -z PROJECT_GC_ID ]; then
|
if [ -z PROJECT_GC_ID ]; then
|
||||||
echo "Please check your project name,
|
echo "Please check your project name,"
|
||||||
There is no project listed with the provided name: $GC_PROJECT_NAME"
|
echo "There is no project listed with the provided name: $GC_PROJECT_NAME"
|
||||||
PROJECT_GC_ID=$(gcloud projects list | grep $GC_PROJECT_NAME | awk '{print$3}')
|
PROJECT_GC_ID=$(gcloud projects list | grep $GC_PROJECT_NAME | awk '{print$3}')
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
echo "Your $GC_PROJECT_NAME ID's project is: $PROJECT_GC_ID"
|
echo "Your $GC_PROJECT_NAME ID's project is: $PROJECT_GC_ID"
|
||||||
|
|
||||||
|
@ -101,8 +101,8 @@ while [[ $? -eq 1 ]]
|
||||||
do
|
do
|
||||||
CHECK_BILLING="$(gcloud services enable speech.googleapis.com 2>/dev/null)"
|
CHECK_BILLING="$(gcloud services enable speech.googleapis.com 2>/dev/null)"
|
||||||
if [[ $? -eq 1 ]]; then
|
if [[ $? -eq 1 ]]; then
|
||||||
echo "Seems you haven't enabled billing for this project: $GC_PROJECT_NAME
|
echo "Seems you haven't enabled billing for this project: $GC_PROJECT_NAME"
|
||||||
For that go to: https://console.developers.google.com/project/$PROJECT_GC_ID/settings
|
exho " For that go to: https://console.developers.google.com/project/$PROJECT_GC_ID/settings
|
||||||
"
|
"
|
||||||
read -p "Press Enter to continue"
|
read -p "Press Enter to continue"
|
||||||
CHECK_BILLING="$(gcloud services enable speech.googleapis.com 2>/dev/null)"
|
CHECK_BILLING="$(gcloud services enable speech.googleapis.com 2>/dev/null)"
|
||||||
|
@ -122,7 +122,7 @@ https://console.developers.google.com/apis/credentials?folder=&organizationId=&p
|
||||||
### End of new project configuration - Google SDK
|
### End of new project configuration - Google SDK
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ $SETUP_TYPE = 2 ]; then
|
if [ "$SETUP_TYPE" = "2" ]; then
|
||||||
#Setup option 1 - Google Cloud SDK
|
#Setup option 1 - Google Cloud SDK
|
||||||
echo "Once logged on Google Cloud SDK, please select the project that owns to the JSON key."
|
echo "Once logged on Google Cloud SDK, please select the project that owns to the JSON key."
|
||||||
gcloud init
|
gcloud init
|
||||||
|
|
Loading…
Reference in New Issue