# HG changeset patch # User drewp@bigasterisk.com # Date 1686600462 25200 # Node ID d7ddfe3837b0ad8ed0b73fd0f9a7d36cd3bdb0b4 # Parent 21d67aae89c03de10aac292dd860dbe7cab5c158 syncthing clients update diff -r 21d67aae89c0 -r d7ddfe3837b0 package_lists.py --- a/package_lists.py Mon Jun 12 13:03:09 2023 -0700 +++ b/package_lists.py Mon Jun 12 13:07:42 2023 -0700 @@ -41,7 +41,6 @@ 'ntpdate', 'rclone', 'sshfs', - 'syncthing', 'vim-nox', 'wakeonlan', 'wget', diff -r 21d67aae89c0 -r d7ddfe3837b0 sync.py --- a/sync.py Mon Jun 12 13:03:09 2023 -0700 +++ b/sync.py Mon Jun 12 13:07:42 2023 -0700 @@ -19,8 +19,8 @@ dl_name = f'syncthing-{os}-{arch}-{version}' url = f'https://github.com/syncthing/syncthing/releases/download/{version}/{dl_name}.tar.gz' files.directory(tmpdir) - files.download(url, str(tmpdir / 'archive.tgz')) # bugreport - server.shell([f'cd {tmpdir}; aunpack archive.tgz']) + files.download(url, str(tmpdir / f'{dl_name}.tgz')) # bugreport + server.shell([f'cd {tmpdir}; aunpack {dl_name}.tgz']) systemd.service(service=f'syncthing@{user}', running=False) @@ -38,7 +38,7 @@ # also see /my/serv/filesync/syncthing/deploy.yaml for the container one -version = 'v1.23.2' +version = 'v1.23.4' # primary instance is in k8s (/my/serv/filesync/syncthing); the rest are run with systemd. # Configs are in ~/.config/syncthing/ on each box