From 72ef42a4e1a6bf2607978c668cc6b6f360d84e0b Mon Sep 17 00:00:00 2001 From: John Date: Mon, 8 Jul 2024 17:39:15 -0400 Subject: [PATCH] Added eeadme --- PBS-Client/README.md | 31 +++++++++++++++++++++++++++++++ PBS-Client/config.json | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 PBS-Client/README.md diff --git a/PBS-Client/README.md b/PBS-Client/README.md new file mode 100644 index 0000000..d38b807 --- /dev/null +++ b/PBS-Client/README.md @@ -0,0 +1,31 @@ +# home-assistant-pbs-client + +This will backup the following directories to your backup host using proxmox backup client. This is to be used in conjunction with an automation to backup hassio and then start this addon. Below is an example of the automation. + +#### Folders being backed up +``` +/addons +/backup +/config +/share +/ssl +``` + +#### Automation Example +``` +alias: Backup HassIO +description: '' +trigger: + - platform: time + at: '23:00:00' +condition: [] +action: + - service: hassio.backup_full + data: + name: autobackup {{now().strftime('%Y-%m-%d %H:%M:%S')}} + - delay: '00:05' + - service: hassio.addon_start + data: + addon: 116a6749_pbs-client +mode: single +``` \ No newline at end of file diff --git a/PBS-Client/config.json b/PBS-Client/config.json index d85a64c..1532046 100644 --- a/PBS-Client/config.json +++ b/PBS-Client/config.json @@ -1,6 +1,6 @@ { "name": "PBS-Client", - "version": "20240708.29", + "version": "20240708.30", "slug": "pbs-client", "description": "Proxmox Backup Client", "url": "https://git.johnhgaunt.com/jgaunt/hassio-addons/src/branch/master/PBS-Client",