Mercurial > code > home > repos > infra
diff sync.py @ 191:d7ddfe3837b0
syncthing clients update
author | drewp@bigasterisk.com |
---|---|
date | Mon, 12 Jun 2023 13:07:42 -0700 |
parents | 65412d39025e |
children | 83573e3350bd |
line wrap: on
line diff
--- 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