From ce84e185ad013275a44476a8fee14f863efed909 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Wed, 8 Apr 2020 13:44:03 +0200 Subject: [PATCH] Restore repositories with partial snapshot (#1641) * Restore repositories with partial snapshot * Run black --- supervisor/snapshots/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/supervisor/snapshots/__init__.py b/supervisor/snapshots/__init__.py index 42b14cf56..64c5c8c45 100644 --- a/supervisor/snapshots/__init__.py +++ b/supervisor/snapshots/__init__.py @@ -310,6 +310,9 @@ class SnapshotManager(CoreSysAttributes): ) if addons: + _LOGGER.info("Restore %s run Repositories", snapshot.slug) + await snapshot.restore_repositories() + _LOGGER.info("Restore %s old add-ons", snapshot.slug) await snapshot.restore_addons(addons)