1
0
mirror of https://github.com/eoli3n/dotfiles synced 2024-11-22 23:12:32 +01:00
eoli3n-dotfiles/roles/packages-desktop
2017-12-19 18:34:53 +01:00
..
handlers added flush handlers 2017-12-19 16:03:05 +01:00
tasks fixed include tasks 2017-12-19 18:34:53 +01:00
README.md specific hosts packages 2017-12-19 17:49:37 +01:00

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