Mercurial > code > home > repos > infra
changeset 191:d7ddfe3837b0
syncthing clients update
author | drewp@bigasterisk.com |
---|---|
date | Mon, 12 Jun 2023 13:07:42 -0700 |
parents | 21d67aae89c0 |
children | 1bfa88c61209 |
files | package_lists.py sync.py |
diffstat | 2 files changed, 3 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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',
--- 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