Commit cfb69058 authored by nimrod's avatar nimrod
Browse files

Remove Smile configs.

parent 15249bee
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
[profile shore]
region = us-east-1

[profile smile]
region = us-east-1

# For aws-vault
[profile smile-security]
+0 −4
Original line number Diff line number Diff line
@@ -2,7 +2,3 @@
[shore]
aws_access_key_id = {{ run(["ph", "show", "--field", "UserName", "shore.co.il/AWS CLI"])["stdout"] }}
aws_secret_access_key = {{ run(["ph", "show", "--field", "Password", "shore.co.il/AWS CLI"])["stdout"] }}

[smile]
aws_access_key_id = {{ run(["ph", "show", "--field", "UserName", "Smile/AWS CLI"])["stdout"] }}
aws_secret_access_key = {{ run(["ph", "show", "--field", "Password", "Smile/AWS CLI"])["stdout"] }}

.bash_completion.d/smile-exec

deleted100644 → 0
+0 −19
Original line number Diff line number Diff line
# vim: ft=bash
# shellcheck shell=bash

_smile_exec() {
    local cur prev words cword opts
    _init_completion || return
    opts='-e --env -h --help -l --list'
    if [[ $prev == -e ]] || [[ $prev == --env ]]
    then
        COMPREPLY=($(compgen -W "$(smile-exec -l)" -- "$cur"))
    elif [[ $cur == -* ]]
    then
        COMPREPLY=($(compgen -W "$opts" -- "$cur"))
    else
        COMPREPLY=($(compgen -c -- "$cur"))
    fi
}

complete -F _smile_exec smile-exec
+0 −1
Original line number Diff line number Diff line
@@ -377,7 +377,6 @@ then
    export CDPATH="$CDPATH:$HOME/Repositories/Shore"
    export CDPATH="$CDPATH:$HOME/Repositories/nehesr"
    export CDPATH="$CDPATH:$HOME/Repositories/GitHub"
    export CDPATH="$CDPATH:$HOME/Repositories/Smile"
    export CDPATH="$CDPATH:$HOME/Repositories"
    # shellcheck disable=SC2016
    export PROMPT_COMMAND='__prompt'
+0 −1
Original line number Diff line number Diff line
# vim:ft=yaml
---
BUNDLE_HTTPS://RUBYGEMS__PKG__GITHUB__COM/SMILE___IO/: '{{ run(["ph", "show", "--field", "UserName", "Web Sites/GitHub"])["stdout"] }}:{{ run(["ph", "show", "--field", "Smile gem token", "Web Sites/GitHub"])["stdout"] }}'
Loading