From cb3253191d66deb28bfe67abef0440f091ef7448 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Mon, 21 Apr 2025 20:27:53 +0200 Subject: [PATCH] vagrant: install borgstore with all options now we have a new s3 backend. --- Vagrantfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index cc4cdb274..e9bd70493 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -247,9 +247,9 @@ def install_borg(fuse) cd borg pip install -r requirements.d/development.lock.txt python3 scripts/make.py clean - # install borgstore WITH sftp support, so it pulls in paramiko also, - # so sftp support will also get into the binaries built. #8574 - pip install borgstore[sftp] + # install borgstore WITH all options, so it pulls in the needed + # requirements, so they will also get into the binaries built. #8574 + pip install borgstore[sftp,s3] pip install -e .[#{fuse}] EOF end