1
0
Fork 0
mirror of https://github.com/eoli3n/dotfiles synced 2024-05-28 10:26:04 +02:00
eoli3n-dotfiles/roles/packages/README.md

554 B

Specific OS packages

Add a tasks file named with hostname of target

echo <<\EOF > tasks/by_os/<archlinux|debian|centos|freebsd>/main.yml
---
- name: Install <archlinux|debian|centos|freebsd> packages
  pacman:
    state: present
    name:
      - vim
  become: True
EOF

Specific hosts packages

Add a tasks file named with hostname of target

mkdir tasks/by_host/$(hostname)
echo <<\EOF > tasks/by_host/$(hostname)/main.yml
---
- name: Install $(hostname) packages
  pacman:
    state: present
    name:
      - vim
  become: True
EOF