Add more frequently used packages

This commit is contained in:
Fernando Schauenburg 2019-11-16 12:12:34 +00:00
parent 2ac9cc5a74
commit b9fb127fdf

View file

@ -1,20 +1,37 @@
--- ---
- name: Install common packages (Debian) - name: Install apt packages (Debian)
when: ansible_os_family == "Debian" when: ansible_os_family == "Debian"
become: yes become: yes
apt: name={{ item }} state=latest update_cache=yes apt: name={{ item }} state=latest update_cache=yes
loop: loop:
- curl - curl
- exuberant-ctags
- gpg - gpg
- htop - htop
- psmisc
- shellcheck
- sqlite
- stow
- tree - tree
- name: Install common packages (macOS) - name: Install homebrew packages (macOS)
when: ansible_os_family == "Darwin" when: ansible_os_family == "Darwin"
homebrew: name={{ item }} state=latest homebrew: name={{ item }} state=latest
loop: loop:
- coreutils
- ctags
- curl - curl
- exiftool
- findutils
- gnu-sed
- gpg - gpg
- htop - htop
- imagemagic
- jupyter
- pstree
- reattach-to-user-namespace
- shellcheck
- sqlite
- stow
- tree - tree
- youtube-dl