adding packer-build dependency
This commit is contained in:
parent
d9c772a76d
commit
ec8eec2089
|
@ -8,6 +8,7 @@
|
|||
- iotop
|
||||
- imagemagick
|
||||
- keychain
|
||||
- libarchive-tools
|
||||
- mg
|
||||
- nvi
|
||||
- pandoc
|
||||
|
@ -33,4 +34,3 @@
|
|||
with_items:
|
||||
- emacs-nox
|
||||
- vim-nox
|
||||
|
||||
|
|
|
@ -90,7 +90,9 @@
|
|||
ansible.builtin.apt: name={{ item }} state=present
|
||||
become: true
|
||||
with_items:
|
||||
- dosfstools
|
||||
- dracut
|
||||
- e2fsprogs
|
||||
- fusecram
|
||||
- genext2fs
|
||||
- genisoimage
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue