Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

RSS

transmission (31) Versions 2.0.4

Installs and configures transmission

Policyfile
Berkshelf
Knife
cookbook 'transmission', '= 2.0.4', :supermarket
cookbook 'transmission', '= 2.0.4'
knife supermarket install transmission
knife supermarket download transmission
README
Dependencies
Changelog
Quality 100%

transmission Cookbook

Installs the Transmission BitTorrent Client and includes a transmission_torrent_file LWRP.

Requirements

Ruby

This cookbook requires Ruby 1.9 or higher

Platforms

Known to work on Debian, Ubuntu, Red Hat and CentOS

Cookbooks

  • build-essential - for compiling the source.
  • openssl - for generating a secure password.

Attributes

  • node["transmission"]["peer_port"] - The port Transmission listens on for peering, default 51413.
  • node["transmission"]["rpc_bind_address"] - Where to listen for RPC connections, default 0.0.0.0.
  • node["transmission"]["rpc_port"] - The port Transmission listens on for remote services, default 9091.
  • node["transmission"]["rpc_username"] - The username required to access remote services, default transmission.
  • node["transmission"]["rpc_password"] - The ssha1 encrypted password, default generated by secure_password.
  • node["transmission"]["home"] - Transmission's home directory, default /var/lib/transmission-daemon.
  • node["transmission"]["config_dir"] - Transmission's config directory, default /var/lib/transmission-daemon/info.
  • node["transmission"]["download_dir"] - Directory to move complete files to, default /var/lib/transmission-daemon/downloads.
  • node["transmission"]["incomplete_dir"] - Directory to keep incomplete files in, default /var/lib/transmission-daemon/incomplete.
  • node["transmission"]["incomplete_dir_enabled"] - Whether the incomplete file directory is used, default false.
  • node["transmission"]["speed_limit_down"] - The KB/s limit for downloading files, default 100.
  • node["transmission"]["speed_limit_down_enabled"] - Whether the download limit is used, default false.
  • node["transmission"]["speed_limit_up"] - The KB/s limit for uploading files, default 100.
  • node["transmission"]["speed_limit_up_enabled"] - Whether the upload limit is used, default false.
  • node["transmission"]["watch_dir"] - Directory to watch for new torrent files, default /var/lib/transmission-daemon/watch.
  • node["transmission"]["watch_dir_enabled"] - Whether the watch file directory is used, default false.

The file also contains the following attribute types:

  • platform specific locations and settings.
  • source installation settings

Resource/Provider

transmission_torrent_file

Download a file via the BitTorrent protocol. The usage semantics are like that of the existing file and remote_file resources. This allows very fast downloads for files that are part of large BitTorrent swarms. The Ubuntu 10.04 LTS ISO (around 700MB) downloads in about 50 seconds.

Actions

  • :create: Download a file via the BitTorrent protocol

Attribute Parameters

  • path: name attribute. the path to the file
  • torrent: torrent file of the swarm to join. can either be a url or local file path
  • blocking: should the file be downloaded in a blocking way? If true Chef will download the file in a single Chef run, if false Chef will check for a completed download during each Chef run until the download is complete. default is true.
  • continue_seeding: should the file continue to be seeded to the swarm after download? default is false.
  • owner: The owner for the file
  • group: The group owner of the file (string or id)
  • rpc_host: the address of the Transmission RPC host to connect to. default is localhost.
  • rpc_port: the port of the Transmission RPC host to connect to. default is 9091.
  • rpc_username: the username of the Transmission RPC account. default is transmission.
  • rpc_password: the password of the Transmission RPC account . should probably be node['transmission']['rpc_password'] which by default is a secure password generated for this node.

Examples

Download the lucid ISO

transmission_torrent_file "/home/ubuntu/ubuntu.iso"  do
  torrent "http://releases.ubuntu.com/lucid/ubuntu-10.04.1-server-i386.iso.torrent"
  owner 'ubuntu'
  group 'ubuntu'
  rpc_username node['transmission']['rpc_username']
  rpc_password node['transmission']['rpc_password']
  action :create
end

Continue seeding after download

transmission_torrent_file "/home/ubuntu/ubuntu.iso"  do
  torrent "http://releases.ubuntu.com/lucid/ubuntu-10.04.1-server-i386.iso.torrent"
  owner 'ubuntu'
  group 'ubuntu'
  continue_seeding true
  rpc_username node['transmission']['rpc_username']
  rpc_password node['transmission']['rpc_password']
  action :create
end

Usage

default

Include default recipe in a run list, to get some Transmission installed. Installs Transmission by package or source depending on the platform.

package

Installs Transmission from packages. This should only be loaded by the default recipe.

source

Installs Transmission from source. This should only be loaded by the default recipe.

License & Authors

Copyright 2011, Opscode, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Dependent cookbooks

openssl >= 0.0.0
build-essential >= 0.0.0

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

v2.0.4 (2014-09-18)

  • [#11] prevent circular symlink for settings.json on Ubuntu 14.04
  • Add Berksfile and test-kitchen config

v2.0.2 (2014-03-19)

  • [COOK-4424] Updates Transmission url in README'

v2.0.0

Requires Ruby 1.9 or higher!

Bug

  • COOK-3451 - Use Hash#key to silence Hash#index deprecation warnings
  • COOK-3450 - Delete torrent local data when not seeding
  • COOK-3449 - Prevent torrent status of checking from prematurely ending blocking downloads
  • COOK-3324 - Use BEncode.load_file to load torrent file when hashing to avoid UTF-8 encoding issues

Improvement

v1.0.4

Bug

  • [COOK-2981]: transmission cookbook has foodcritic errors

v1.0.2

  • [COOK-729]: transmission_torrent_file doesn't work for more than a single torrent
  • [COOK-732]: link to file in swarm not created if torrent already completely downloaded

Foodcritic Metric
            

2.0.4 passed this metric