Add more frequently used packages
This commit is contained in:
parent
2ac9cc5a74
commit
b9fb127fdf
1 changed files with 20 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue