Am 15.05.2014 21:25, schrieb Ugo Bellavance:

> I wrote my first puppet module and it is for lsyncd.

Just looked into lsyncd and what it can achieve. While I like rsync and
use it quite often, there's a better way to mirror directories to
multiple destinations: BitTorrent Sync (btsync). btsync uses the
BitTorrent algorithm to distribute the contents of a directory to an
arbitrary number of other machines, where every other machine starts
participating in the distribution process as soon as they have some
chunks of the added file(s) available locally, thus producing less load
on the originating machine.

There are some btsync modules available on Puppetforge, and I've also
written one myself which provides a new resource type "btsync" which
allows for adding/removing new sync folders to a running btsync
instance, for example:

  btsync { 'test':
    secret   => hiera('btsync::test::secret'),    # The secret for this
sync folder
    path     => 'path/to/test_folder',    # Where the sync folder should
be stored on disc
    login    => hiera('btsync::login'),    # Username for btsync
    password => hiera('btsync::password'),    # Password
    ensure   => absent,    # Removes the sync folder from btsync AND on
disc.
    require  => Exec['run_btsync'],   # Make sure btsync is installed
and running.
  }

Bye...

    Dirk
-- 

*Dirk Heinrichs*, Senior Systems Engineer, Engineering Solutions
*Recommind GmbH*, Von-Liebig-Straße 1, 53359 Rheinbach
*Tel*: +49 2226 1596666 (Ansage) 1149
*Email*: d...@recommind.com <mailto:d...@recommind.com>
*Skype*: dirk.heinrichs.recommind
www.recommind.com <http://www.recommind.com>



http://www.recommind.com

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/537600C7.2040301%40recommind.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to