This page (revision-32) was last changed on 04-Oct-2025 12:15 by Harry Metske

This page was created on 05-Jun-2025 15:53 by Harry Metske

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
32 04-Oct-2025 12:15 21 KB Harry Metske to previous
31 16-Aug-2025 14:59 21 KB Harry Metske to previous | to last
30 16-Aug-2025 14:11 21 KB Harry Metske to previous | to last
29 16-Aug-2025 14:10 21 KB Harry Metske to previous | to last
28 16-Aug-2025 10:04 7 KB Harry Metske to previous | to last
27 18-Jun-2025 19:43 7 KB Harry Metske to previous | to last
26 10-Jun-2025 16:12 6 KB Harry Metske to previous | to last
25 10-Jun-2025 16:11 6 KB Harry Metske to previous | to last
24 09-Jun-2025 18:21 6 KB Harry Metske to previous | to last
23 09-Jun-2025 10:02 6 KB Harry Metske to previous | to last
22 09-Jun-2025 09:27 6 KB Harry Metske to previous | to last
21 08-Jun-2025 18:06 5 KB Harry Metske to previous | to last

Page References

Incoming links Outgoing links
HomeAssistant...nobody

Version management

Difference between version and

At line 97 added 9 lines
! Backup
HA provides it's own backup system, you can configure it with the UI (settings, system, backup). I set it to twice a week with 5 versions, only local backup.\\
Then I arranged a poor man's remote backup by scheduling scp from my raspberry pi using crontab. I first arranged an ssh keypair and added the public key to ha's root authorized_keys file. crontab:
{{{
15 1 * * 1,3 ubuntu scp -i /home/ubuntu/.ssh/ha_rsa -P 22222 root@192.168.2.8:/mnt/data/supervisor/backup/* /home/ubuntu/ha-backups 2>/tmp/ha-backup.err 1>/tmp/ha-backup.out
15 2 * * 1,3 ubuntu find /home/ubuntu/ha-backups -type f -mtime +7 -exec rm {} \; 2>/tmp/ha-backup-clean.err 1>/tmp/ha-backup-clean.out
}}}