arashster

Members
  • Posts

    11
  • Joined

  • Last visited

Posts posted by arashster

  1. It would be great if btsync could report your peers version numbers (or at least have an option to broadcast your version number).

     

    I run btsync on many servers to synchronize files/configuration files and knowing which client I need to update or hasn't been updated would make it simpler for management. 

  2. I've noticed btsync overwrites newer files if a node has been away for a while. For example, I had a node that did not have network connectivity for a few days, and I didn't touch anything in the sync folder. When it reconnected, it overwrote the files that were updated between all the other nodes and reverted to an older version. Why does this happen? This is on the latest version (1.1.82).

     

    Thank you.


  3. #/bin/sh
    killall -9 btsync
    rm btsync
    wget $1 -O download.tar.gz
    tar -xzvf download.tar.gz
    rm download.tar.gz
    ./btsync

    Save the file as btupdater in the same directory as your btsync executable

    Run


    chmod +x btupdater

    to allow execution

    To use, pass of the location of the latest btsync tar.gz file as the first argument.

    ex.


    ./btupdater http://syncapp.bittorrent.com/1.1.33/btsync_x64-1.1.33.tar.gz

    I wonder, could btsync be used to update itself with a new binary?

    Assuming all your btsync daemons are running the same architecture, could you sync the actual executable folder and replace the executable on one and it will replace on all the others?

    I'm not a professional scripter or anything.