mirror of
https://github.com/eoli3n/dotfiles
synced 2024-11-22 23:12:32 +01:00
.. | ||
handlers | ||
tasks | ||
README.md |
Specific hosts packages
Add a tasks file named with hostname of target
echo <<\EOF > tasks/$(hostname).yml
---
- name: Install $(hostname) packages
pacman: name={{item}} state=present
with_items:
- vim
become: True
EOF