From dc75a52d67c9c12e6953f2e78e4a2d76e0afd4de Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Wed, 16 Jan 2019 15:54:32 -0800 Subject: [PATCH] backups: Make app available by default We have already progress quite far along in supporting backups and restore. This is a critical functionality of FreedomBox. Fixes: #1459. Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/modules/backups/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plinth/modules/backups/__init__.py b/plinth/modules/backups/__init__.py index 3e81ebab7..eb4615cbe 100644 --- a/plinth/modules/backups/__init__.py +++ b/plinth/modules/backups/__init__.py @@ -20,6 +20,8 @@ from . import api version = 2 +is_essential = True + managed_packages = ['borgbackup', 'sshfs'] depends = ['storage']