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 - iotop
- imagemagick - imagemagick
- keychain - keychain
- libarchive-tools
- mg - mg
- nvi - nvi
- pandoc - pandoc
@ -33,4 +34,3 @@
with_items: with_items:
- emacs-nox - emacs-nox
- vim-nox - vim-nox

View File

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

View File

@ -26,6 +26,17 @@ if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH" PATH="$HOME/.local/bin:$PATH"
fi 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 [ -f ~/.cargo/env ] && source $HOME/.cargo/env
alias co='git checkout' alias co='git checkout'