Alan Orth
1b4e9ae87c
Debian 10 comes with Python 2 and Python 3 (at least from the ISO), so we should prefer the Python 3 version of pycurl. We'll see whet- her cloud providers like Linode and Digital Ocean ship with Python 3 or not in their default image.
35 lines
732 B
YAML
35 lines
732 B
YAML
---
|
|
|
|
- block:
|
|
- 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
|
|
loop:
|
|
- git
|
|
- tmux
|
|
- iotop
|
|
- htop
|
|
- strace
|
|
- cron-apt #how does this work with systemd?
|
|
- safe-rm
|
|
- debian-goodies
|
|
- mosh
|
|
- python3-pycurl # for ansible's apt_repository
|
|
- lzop
|
|
- vim
|
|
- lrzip
|
|
- unzip
|
|
- apt-transport-https # for https support in apt
|
|
|
|
- name: Configure cron-apt
|
|
import_tasks: cron-apt.yml
|
|
tags: cron-apt
|
|
|
|
- name: Install tarsnap
|
|
import_tasks: tarsnap.yml
|
|
tags: packages
|
|
|
|
# vim: set sw=2 ts=2:
|