Add initial Ansible support, configure carbonbean

This adds a playbook for my Pop!_OS based laptop named carbonbean. I
have no doubt there is more work to do to make this complete, but it is
at a stage now that is good enough to move on to other bits of
refactoring within this repository.
This commit is contained in:
Gene Liverman 2022-06-20 22:19:44 -04:00
parent d2a26f9308
commit 347ef17d7e
No known key found for this signature in database
GPG key ID: 3AF83985B6C857C6
3 changed files with 288 additions and 1 deletions

View file

@ -241,7 +241,13 @@ elif [[ `uname` == 'Linux' ]]; then
PATH="$HOME/.local/bin:$PATH"
fi
export CLOUDSDK_PYTHON="/usr/bin/python2"
if [ -d "$HOME/.local/share/gem/ruby/3.0.0/bin" ] ; then
PATH="$HOME/.local/share/gem/ruby/3.0.0/bin:$PATH"
fi
# export CLOUDSDK_PYTHON="/usr/bin/python2"
gcloud_zsh_completions='/snap/google-cloud-cli/current/completion.zsh.inc'
if [ -f $gcloud_zsh_completions ]; then source $gcloud_zsh_completions; fi
fi