Alan Orth
d766c3dbbe
Now that Tarsnap has official packages this is one less thing that needs to be manually installed from source after bringing a machine up. See: http://mail.tarsnap.com/tarsnap-announce/msg00037.html
29 lines
546 B
YAML
29 lines
546 B
YAML
---
|
|
- name: Configure apt mirror
|
|
template: src=sources.list.j2 dest=/etc/apt/sources.list owner=root group=root mode=0644
|
|
|
|
- name: Install base packages
|
|
apt: name={{ item }} update_cache=yes
|
|
with_items:
|
|
- git
|
|
- tmux
|
|
- iotop
|
|
- htop
|
|
- strace
|
|
- cron-apt #how does this work with systemd?
|
|
- safe-rm
|
|
- debian-goodies
|
|
- mosh
|
|
- python-pycurl # for ansible's apt_repository
|
|
- lzop
|
|
- vim
|
|
- lrzip
|
|
- unzip
|
|
|
|
- include: cron-apt.yml
|
|
tags: cron-apt
|
|
|
|
- include: tarsnap.yml
|
|
|
|
# vim: set sw=2 ts=2:
|