-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Refactor the apt packages installation"
This reverts commit 5002811.
- Loading branch information
Showing
2 changed files
with
40 additions
and
38 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,45 @@ | ||
--- | ||
- name: install latest PPAs | ||
become: yes | ||
become_method: sudo | ||
apt_repository: repo='ppa:git-core/ppa' update_cache=yes | ||
tags: packs | ||
|
||
- name: install libraries using APT | ||
apt: name={{ item }} state=latest | ||
become: yes | ||
become_method: sudo | ||
with_items: | ||
- vim | ||
- git | ||
- tmux | ||
- openvpn | ||
- openssh-server | ||
- task | ||
- cmake | ||
- curl | ||
- keepass2 | ||
- xdotool # required by keepass2 to auto-type credentials | ||
- xclip | ||
- python-gpgme | ||
- gnome-disk-utility # format/partition disks | ||
- build-essential | ||
- nodejs | ||
- npm | ||
- tree | ||
- audacious | ||
- silversearcher-ag | ||
- gnupg-agent | ||
- enigmail | ||
- secure-delete # delete by zeroization | ||
- clamav # useful antivirus for Linux | ||
- lnav # utility for checking logs | ||
- dtrx # universal archive extractor utility | ||
- zsh | ||
- python-pip | ||
- python-dev | ||
tags: packs | ||
|
||
- include: aptpack.yml become=yes become_method=sudo | ||
- include: dotfiles.yml | ||
- include: vimproved.yml | ||
- include: zshell.yml |