The net/syncthing port
syncthing-1.27.12p0 – open decentralized synchronization utility (cvsweb github mirror)
Description
Syncthing is an application that lets you synchronize your files across multiple devices. This means the creation, modification or deletion of files on one machine will automatically be replicated to your other devices. We believe your data is your data alone and you deserve to choose where it is stored. Therefore Syncthing does not upload your data to the cloud but exchanges your data across your machines as soon as they are online at the same time.WWW: https://syncthing.net/
Readme
+----------------------------------------------------------------------- | Running ${PKGSTEM} on OpenBSD +----------------------------------------------------------------------- Compatibility ============= Please note that not all versions of Syncthing are compatible. The second number in the release string must match. E.g. 0.12.x is not compatible with 0.13.x. If you mismatch the versions, hosts will fail to discover each other. Starting Syncthing ================== There are a couple of different ways to invoke Syncthing. Which is best for you will depend upon how many users will run Syncthing concurrently. Starting via RC script ---------------------- Syncthing can be started via the included RC script, thus running Syncthing as a system service. This is fine for single user configurations. Under this mode of operation, Syncthing will run as the _syncthing user and store the default 'Sync' folder under ${LOCALSTATEDIR}/syncthing. Starting Manually ----------------- The other way is to simply invoke ${TRUEPREFIX}/bin/syncthing manually. This is a better choice for situations where several users all want to run their own instances of Syncthing. Under this mode, the default 'Sync' folder will be stored in the user's home directory. Users will have to configure Syncthing to listen on different TCP ports for this method to work. It might be desirable to have Syncthing executed on system reboot for each user individually. To achieve this a crontab entry can be created on per-user basis: @reboot tmux new-session -d '${TRUEPREFIX}/bin/syncthing' This will result in a new tmux(1) session being spawned each system boot. The user can later use `tmux attach` to view and control their Syncthing process. File Descriptor Limits ====================== Syncthing is fairly hungry for file descriptors and the default limits may be insufficient. On OpenBSD, Syncthing uses kqueue(2) to "watch" files, and since kqueue(2) doesn't support recursive watching, each file has be watched individually. The upshot of this is that each file in a watched folder will use one file descriptor. If you run Syncthing via the rc.d(8) script, then you can give Syncthing more file descriptors by adding the following to login.conf(5): syncthing:\ :openfiles-cur=4096:\ :openfiles-max=4096:\ :tc=daemon: If you run Syncthing manually, you can add the following to the appropriate login class. If you're in the staff login class, you can add the following lines under the staff section: staff:\ [...] :openfiles-cur=4096:\ :openfiles-max=4096:\ [...] Don't forget to rebuild the login.conf.db file (if necessary): # [ -f /etc/login.conf.db ] && cap_mkdb /etc/login.conf Note that in addition to ulimits, there is a kernel-level file descriptor limit which may also need to be adjusted. This limit is managed through the kern.maxfiles sysctl(8): # sysctl kern.maxfiles=4096 # echo "kern.maxfiles=4096" >> /etc/sysctl.conf Another option is to turn off the file watcher and use only periodic scans. This will result in much reduced file descriptor usage at the cost of a (configurable) latency. See "watch for changes" and "full rescan interval" in the "advanced" tab in a folder's settings (on the web UI).
Maintainer
Edd Barrett
Only for arches
aarch64 amd64 arm i386 riscv64
Categories
Build dependencies
Files
- /etc/rc.d/syncthing
- /etc/rc.d/syncthing_discovery
- /etc/rc.d/syncthing_relay
- /usr/local/bin/stdiscosrv
- /usr/local/bin/strelaysrv
- /usr/local/bin/syncthing
- /usr/local/man/man1/stdiscosrv.1
- /usr/local/man/man1/strelaysrv.1
- /usr/local/man/man1/syncthing.1
- /usr/local/man/man5/syncthing-config.5
- /usr/local/man/man5/syncthing-stignore.5
- /usr/local/man/man7/syncthing-bep.7
- /usr/local/man/man7/syncthing-device-ids.7
- /usr/local/man/man7/syncthing-event-api.7
- /usr/local/man/man7/syncthing-faq.7
- /usr/local/man/man7/syncthing-globaldisco.7
- /usr/local/man/man7/syncthing-localdisco.7
- /usr/local/man/man7/syncthing-networking.7
- /usr/local/man/man7/syncthing-relay.7
- /usr/local/man/man7/syncthing-rest-api.7
- /usr/local/man/man7/syncthing-security.7
- /usr/local/man/man7/syncthing-versioning.7
- /usr/local/share/doc/pkg-readmes/syncthing
- /var/syncthing/
- @extraunexec rm -rf /var/syncthing/{.,}*
- @newgroup _syncthing:768
- @newuser _syncthing:768:_syncthing::Syncthing user:/var/syncthing:/sbin/nologin