From c76df15057e21dd6eab25424cc2af730f288d642 Mon Sep 17 00:00:00 2001 From: Broizter Date: Sun, 9 Aug 2020 23:20:55 +0200 Subject: [PATCH] Release v0.0.2 --- README.md | 10 ++++------ bitwardenbackup.sh | 1 - 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index d6eec2b..7acacea 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,6 @@ Script for backing up Bitwarden vault including attachments - ## Summary This script is a product of me trying to find a solution for backing up the Bitwarden vault including all attachments daily via cron. There's plenty of scripts/programs out there that backup Bitwarden, but very few that also handle attachments. @@ -11,25 +10,24 @@ It currently does not handle versioning/encryption. Borg backup is an excellent Pull requests are highly encouraged! - ## Usage, Requirements This script can be invoked manually, but it's designed to work without issues when called via cron aswell. +Download the latest release from GitHub for a stable and tested version. + Required dependencies: * **bw** for accessing your Bitwarden vault. It's Bitwarden's official CLI utility that can be downloaded from https://github.com/bitwarden/cli - * **jq**, **grep**, **sed** and **awk** for utility output parsing. **jq** may need to be installed seperately. For Debian based distributions it can be installed with + * **jq** for utility output parsing. For Debian based distributions it can be installed with $ apt install jq - - + ## Configuration 1. Create the folder where you want your backups to end up. 2. Edit the values of the variables in the configuration section. Do not edit anything under "END OF CONFIGURATION" unless you know exactly what you're doing. - ## License This software is released under the terms of the MIT License, see file diff --git a/bitwardenbackup.sh b/bitwardenbackup.sh index bc86a18..b7ebe35 100755 --- a/bitwardenbackup.sh +++ b/bitwardenbackup.sh @@ -8,7 +8,6 @@ BW_BINARY=/path/to/bitwarden-cli/bin ############ END OF CONFIGURATION ################ - # Check if the output directory exists if ! [ -d $OUTPUTFOLDER ]; then echo "Output folder doesn't exist." 1>&2