setup includes media sync and defaults editor; moved almost all prompts to the start of the setup
This commit is contained in:
19
bin/aws/configure
vendored
Executable file
19
bin/aws/configure
vendored
Executable file
@ -0,0 +1,19 @@
|
||||
#!/bin/zsh
|
||||
source "$HOME/.config/wryn/env/env.zsh"
|
||||
source $ZSH_COLOR_UTIL
|
||||
|
||||
#####################################################################
|
||||
|
||||
CONFIGURE() {
|
||||
CHECK "checking for '$DOTWRYN_AWS_PROFILE' aws credentials"
|
||||
grep -q "^\\[$DOTWRYN_AWS_PROFILE\\]$" "$HOME/.aws/credentials" \
|
||||
&& { OK; return 0 } || WARN
|
||||
|
||||
USER_PROMPT "set up credentials now? [Y/n]"
|
||||
READ_K yn
|
||||
[[ $yn =~ ^[nN] ]] && return 1
|
||||
|
||||
aws --profile $DOTWRYN_AWS_PROFILE configure
|
||||
}
|
||||
|
||||
CONFIGURE
|
Reference in New Issue
Block a user