adding packer-build dependency

This commit is contained in:
Kyle Isom 2023-04-11 13:50:16 -07:00
parent d9c772a76d
commit ec8eec2089
3 changed files with 14 additions and 1 deletions

View File

@ -8,6 +8,7 @@
- iotop
- imagemagick
- keychain
- libarchive-tools
- mg
- nvi
- pandoc
@ -33,4 +34,3 @@
with_items:
- emacs-nox
- vim-nox

View File

@ -90,7 +90,9 @@
ansible.builtin.apt: name={{ item }} state=present
become: true
with_items:
- dosfstools
- dracut
- e2fsprogs
- fusecram
- genext2fs
- genisoimage

View File

@ -26,6 +26,17 @@ if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
if [ ! -z "$(command -v keychain)" ]
then
KEYCHAIN_RC="$HOME/.keychain/${HOST%%.*}-sh"
keychain -q
if [ -s "$KEYCHAIN_RC" ]
then
source "$KEYCHAIN_RC"
fi
fi
[ -f ~/.cargo/env ] && source $HOME/.cargo/env
alias co='git checkout'