upgrades: Enable backup/restore

Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Joseph Nuthalapati 2018-10-23 16:23:46 -07:00 committed by James Valleroy
parent 37d84c0f50
commit 5be3249217
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808
3 changed files with 38 additions and 1 deletions

View File

@ -15,7 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
@essential @upgrades @system
@essential @upgrades @system @backups
Feature: Software Upgrades
Configure automatic software upgrades
@ -31,3 +31,11 @@ Scenario: Disable automatic upgrades
Given automatic upgrades are enabled
When I disable automatic upgrades
Then automatic upgrades should be disabled
Scenario: Backup and restore upgrades
When I enable automatic upgrades
And I create a backup of the upgrades app data
And I disable automatic upgrades
And I export the upgrades app data backup
And I restore the upgrades app data backup
Then automatic upgrades should be enabled

View File

@ -24,6 +24,8 @@ from plinth import service as service_module
from plinth import actions
from plinth.menu import main_menu
from .manifest import backup
version = 1
is_essential = True

View File

@ -0,0 +1,27 @@
#
# This file is part of FreedomBox.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
"""
Application manifest for upgrades.
"""
from plinth.modules.backups.api import validate as validate_backup
backup = validate_backup({
'config': {
'files': ['/etc/apt/apt.conf.d/20auto-upgrades']
}
})