diff options
author | clarkzjw <[email protected]> | 2023-01-13 20:25:00 -0800 |
---|---|---|
committer | clarkzjw <[email protected]> | 2023-01-13 20:25:00 -0800 |
commit | e7062e722f5c41d2d5ab1dbef85d867b8e3a0bda (patch) | |
tree | 81e25a348ad1b4981840a0bba90be6390f529c6d | |
parent | 1a593322441e713ff937cb905aea7aab1d951161 (diff) | |
download | homelab-e7062e722f5c41d2d5ab1dbef85d867b8e3a0bda.tar.gz |
add qBittorrent
3 files changed, 26 insertions, 0 deletions
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 @@ | |||
1 | - name: Setup BT | ||
2 | hosts: atlas | ||
3 | remote_user: clarkzjw | ||
4 | gather_facts: true | ||
5 | |||
6 | roles: | ||
7 | - 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 @@ | |||
1 | # qBittorrent | ||
2 | |||
3 | ## Config Location | ||
4 | |||
5 | ```bash | ||
6 | ~/.config/qBittorrent/ | ||
7 | ~/.local/share/qBittorrent | ||
8 | ``` | ||
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 @@ | |||
1 | - name: Enable Debian Testing | ||
2 | apt_repository: | ||
3 | repo: deb https://deb.debian.org/debian testing main contrib non-free | ||
4 | state: present | ||
5 | |||
6 | - name: Install Bittorrent clients | ||
7 | apt: | ||
8 | name: | ||
9 | - qbittorrent | ||
10 | update_cache: true | ||
11 | default_release: "testing" | ||