feat: default domain in setup

This commit is contained in:
geek 2017-09-06 10:00:24 -05:00 committed by Sérgio Ramos
parent 3c3f6f1c65
commit e1df4a14d3
1 changed files with 9 additions and 2 deletions

View File

@ -1,13 +1,20 @@
#!/bin/bash
set -e -o pipefail
echo -n "Enter the domain name you plan to use for this key: "
read domain
TRITON_ACCOUNT=$(triton account get | awk -F": " '/id:/{print $2}')
TRITON_DC=$(triton profile get | awk -F"/" '/url:/{print $3}' | awk -F'.' '{print $1}')
DEFAULT_DOMAIN=${TRITON_ACCOUNT}.${TRITON_DC}.cns.triton.zone
read -p "Enter the domain name you plan to use for this key [$DEFAULT_DOMAIN]: " domain
domain="${domain:-$DEFAULT_DOMAIN}"
echo -n "Enter the password to use for the key: "
read -s password
echo
echo "Generating key for $domain"
keys_path=keys-$domain
mkdir -p $keys_path