Skip to content

Commit

Permalink
Revert "Refactor the apt packages installation"
Browse files Browse the repository at this point in the history
This reverts commit 5002811.
  • Loading branch information
dminca committed Sep 7, 2016
1 parent 5002811 commit 202dcc9
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 38 deletions.
37 changes: 0 additions & 37 deletions roles/packages/tasks/aptpack.yml

This file was deleted.

41 changes: 40 additions & 1 deletion roles/packages/tasks/main.yml
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

0 comments on commit 202dcc9

Please sign in to comment.