blob: 870323ee3f215c5c3eeb0282501b08730e6381b4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
- name: Enable Debian Testing
apt_repository:
repo: deb https://deb.debian.org/debian testing main contrib non-free
state: present
- name: Install Bittorrent clients
apt:
name:
- qbittorrent
update_cache: true
default_release: "testing"
|