From e7062e722f5c41d2d5ab1dbef85d867b8e3a0bda Mon Sep 17 00:00:00 2001 From: clarkzjw Date: Fri, 13 Jan 2023 20:25:00 -0800 Subject: add qBittorrent --- clarkzjw.cc/config/atlas/ansible/bt.yaml | 7 +++++++ clarkzjw.cc/config/atlas/ansible/roles/bittorrent/README.md | 8 ++++++++ .../config/atlas/ansible/roles/bittorrent/tasks/main.yaml | 11 +++++++++++ 3 files changed, 26 insertions(+) create mode 100644 clarkzjw.cc/config/atlas/ansible/bt.yaml create mode 100644 clarkzjw.cc/config/atlas/ansible/roles/bittorrent/README.md create mode 100644 clarkzjw.cc/config/atlas/ansible/roles/bittorrent/tasks/main.yaml diff --git a/clarkzjw.cc/config/atlas/ansible/bt.yaml b/clarkzjw.cc/config/atlas/ansible/bt.yaml new file mode 100644 index 0000000..9578a6f --- /dev/null +++ b/clarkzjw.cc/config/atlas/ansible/bt.yaml @@ -0,0 +1,7 @@ +- name: Setup BT + hosts: atlas + remote_user: clarkzjw + gather_facts: true + + roles: + - role: bittorrent diff --git a/clarkzjw.cc/config/atlas/ansible/roles/bittorrent/README.md b/clarkzjw.cc/config/atlas/ansible/roles/bittorrent/README.md new file mode 100644 index 0000000..d1b5376 --- /dev/null +++ b/clarkzjw.cc/config/atlas/ansible/roles/bittorrent/README.md @@ -0,0 +1,8 @@ +# qBittorrent + +## Config Location + +```bash +~/.config/qBittorrent/ +~/.local/share/qBittorrent +``` diff --git a/clarkzjw.cc/config/atlas/ansible/roles/bittorrent/tasks/main.yaml b/clarkzjw.cc/config/atlas/ansible/roles/bittorrent/tasks/main.yaml new file mode 100644 index 0000000..870323e --- /dev/null +++ b/clarkzjw.cc/config/atlas/ansible/roles/bittorrent/tasks/main.yaml @@ -0,0 +1,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" -- cgit v1.2.3