Forge Home

btsync

Module for configuring BitTorrent Sync instances

13,523 downloads

7,824 latest version

3.0 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 1.7.2 (latest)
  • 1.7.0
  • 1.6.4
  • 1.5.1
  • 1.5.0
  • 1.4.3
  • 1.3.3
  • 1.3.2
  • 1.3.1
  • 1.3.0
  • 1.2.0
  • 1.1.0
  • 1.0.0
  • 0.0.5
released Nov 24th 2015
This version is compatible with:
  • Puppet >=3.4.0 < 4.0.0
  • Archlinux

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'justin8-btsync', '1.7.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add justin8-btsync
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install justin8-btsync --version 1.7.2

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

justin8/btsync — version 1.7.2 Nov 24th 2015

Puppet Forge Build Status

Overview

The btsync puppet module allows you to manage multiple BitTorrent Sync instances with Puppet and systemd.

Usage

Just include the btsync::system class to enable a system-wide configuration with the webui enabled. This by default this will have the webui accessible via localhost only.

include btsync::system

If you wish to enable remote access to the webui:

class { 'btsync::system':
    webui => 'remote',
}

Syncing individual folders

Declare a folder to be synced. This will create an individual service per folder. Lots more options are available below.

btsync::folder { '/path/to/folder':
    secret => 'abcdefg',
    path   => '/alternate/path/instead/of/title',
    owner  => 'root',
    group  => 'root',
}

Reference

Classes:

Resources:

###Class: btsync Install btsync. You should not declare this class explicitely, it should be done by either the btsync::system or btsync::folder classes.

###Class: btsync::system This resource is used to declare a system-wide btsync daemon to be run.

####listening_port The port the daemon should listen on for new connections. (NOT the webui port). 0 is random. Default: 0

####storage_path The path to store internal data for the btsync application. Default: /var/lib/btsync

####use_upnp Use UPnP for port mapping Default: true

####download_limit Limit the download speed for this folder. Default: 0

####upload_limit Limit the upload speed for this folder. Default: 0

####webui_listen The address/port on which to run the webui. Default: 127.0.0.1:8888

####login The login username for the webui. Leaving this and password undefined results in the configuration wizard running when you first connect to the webui.

####password The password for webui access. Leaving this and login undefined results in the configuration wizard running when you first connect to the webui.

####directory_root The default path to show when browsing for a folder in the webui. Default: /

###Class: btsync::folder This resource is used to declare an individual folder that is to be synced. Each instance will result in its own service being generated.

####ensure Either present or absent. If set to absent it will cause an error after the removal due to bug PUP-2188.

####secret A read/write or read-only secret generated with btsync --generate-secret or btsync --get-ro-secret $secret

####path The path to sync; Defaults to title.

####owner The owner for the folder and subdirectories

####group The group for the folder and subdirectories

####listening_port Port for the daemon to listen on. 0 will randomize on start. Default: 0

####use_upnp Use UPnP for port mapping Default: true

####download_limit Limit the download speed for this folder. Default: 0

####upload_limit Limit the upload speed for this folder. Default: 0

####use_relay_server Use relay server when direct connection fails. Default: false

####use_tracker Use a torrent tracker to find peers. Default: false

####use_dht Use DHT to find peers. Default: true

####search_lan Search for peers on the local network. Default: true

####sync_trash Enable SyncArchive to store files deleted on remote devices. Default: true

####overwrite_changes Restore modified files to original version, ONLY for Read-Only folders. Default: false

####ignore_list An array of entries to add to the IgnoreList file. The default list (desktop.ini, .DS_Store, etc) will always be active. Default: []

TODO

  • Create unit tests
  • Add explicit support for extra OSes