diff options
Diffstat (limited to 'clarkzjw.cc/config/atlas/ansible')
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" | ||