All Projects â†’ elboletaire â†’ Ansible Transmission

elboletaire / Ansible Transmission

Licence: mit
🕹 A TransmissionBT installation role for Ansible

Projects that are alternatives of or similar to Ansible Transmission

Ansible Letsencrypt
An ansible role to generate TLS certificates and get them signed by Let's Encrypt
Stars: ✭ 433 (+5312.5%)
Mutual labels:  ansible, ansible-role
Ansible Role Nginx
Ansible Role - Nginx
Stars: ✭ 632 (+7800%)
Mutual labels:  ansible, role
Ansible Role Gitlab
Ansible Role - GitLab
Stars: ✭ 459 (+5637.5%)
Mutual labels:  ansible, role
Ansible Role Php
Ansible Role - PHP
Stars: ✭ 396 (+4850%)
Mutual labels:  ansible, role
Ansible Role Sonarqube
Ansible Role: SonarQube
Stars: ✭ 22 (+175%)
Mutual labels:  ansible, ansible-role
Ansible Role Security
Ansible Role - Security
Stars: ✭ 398 (+4875%)
Mutual labels:  ansible, role
Ansible Role Mysql
Ansible Role - MySQL
Stars: ✭ 826 (+10225%)
Mutual labels:  ansible, role
Ansible Role Nodejs
Ansible Role - Node.js
Stars: ✭ 322 (+3925%)
Mutual labels:  ansible, role
Ansible Role Jenkins
Ansible Role - Jenkins CI
Stars: ✭ 689 (+8512.5%)
Mutual labels:  ansible, role
Postgresql
Fairly full featured Ansible role for Postgresql.
Stars: ✭ 684 (+8450%)
Mutual labels:  ansible, ansible-role
Ansible Role Htpasswd
Ansible Role - htpasswd
Stars: ✭ 17 (+112.5%)
Mutual labels:  ansible, role
Ansible Skeleton
The skeleton to create new ansible roles.
Stars: ✭ 5 (-37.5%)
Mutual labels:  ansible, ansible-role
Ansible Role Firewall
Ansible Role - iptables Firewall configuration.
Stars: ✭ 343 (+4187.5%)
Mutual labels:  ansible, role
Ansible Role Nginx
Ansible role for NGINX
Stars: ✭ 404 (+4950%)
Mutual labels:  ansible, ansible-role
Ansible Role Apache
Ansible Role - Apache 2.x.
Stars: ✭ 341 (+4162.5%)
Mutual labels:  ansible, role
Ansible Role Certbot
Ansible Role - Certbot (for Let's Encrypt)
Stars: ✭ 477 (+5862.5%)
Mutual labels:  ansible, role
Ansible Role Postgresql
Ansible Role - PostgreSQL
Stars: ✭ 310 (+3775%)
Mutual labels:  ansible, role
Ansible Consul
📡 Ansible role for Hashicorp Consul clusters
Stars: ✭ 320 (+3900%)
Mutual labels:  ansible, ansible-role
Ansible Role Nginx
Ansible role to install and manage nginx configuration
Stars: ✭ 648 (+8000%)
Mutual labels:  ansible, ansible-role
Ansible Ssh Hardening
This Ansible role provides numerous security-related ssh configurations, providing all-round base protection.
Stars: ✭ 746 (+9225%)
Mutual labels:  ansible, role

Transmission BT Ansible Role

Build status Ansible galaxy

Ansible role for installing and configuring Transmission.

Requirements

Debian based system.

Installing

You can easily install this role using ansible-galaxy:

ansible-galaxy install elboletaire.transmission -p roles

Variables

There are no mandatory variables.

Web interface & RPC

Variable Default
transmission_password
transmission_rpc_auth_required false
transmission_user {{ ansible_user_id }}
transmission_rpc_whitelist_enabled true
transmission_rpc_whitelist 127.0.0.1
transmission_rpc_host_whitelist_enabled true
transmission_rpc_host_whitelist ""
transmission_url /transmission/

Folders

Variable Default
transmission_download_dir {{ ansible_env.HOME }}/downloads
transmission_umask 2
transmission_watch_dir_enabled true
transmission_watch_dir {{ ansible_env.HOME }}/torrents
transmission_incomplete_dir_enabled false
transmission_incomplete_dir {{ ansible_env.HOME }}/.incomplete

Speed limits & ratio

Variable Default
transmission_speed_limit_up_enabled false
transmission_speed_limit_up 100
transmission_speed_limit_down_enabled false
transmission_speed_limit_down 100
transmission_ratio_limit_enabled false
transmission_ratio_limit 2

Blocklist

Variable Default
transmission_blocklist_enabled false
transmission_blocklist_url http://www.example.com/blocklist

Please, refer to the transmission documentation to better understand this variables.

Example Playbook

A very simple example:

- hosts: all
  roles:
    - role: transmission
      sudo: yes

A bit more complex example:

- hosts: all
  roles:
    - role: transmission
      sudo: yes
      transmission_user: Krilin
      transmission_password: Bu1m4
      transmission_rpc_auth_required: true
      transmission_rpc_whitelist_enabled: true
      transmission_rpc_whitelist: "127.0.0.1,192.168.1.*"

License

The MIT License (MIT)

Copyright (c) 2015 Oscar Casajuana <elboletaire at underave dot net>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].