mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-15 09:51:21 +00:00
13 lines
280 B
Python
13 lines
280 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
Application manifest for snapshot.
|
|
"""
|
|
|
|
from plinth.modules.backups.api import validate as validate_backup
|
|
|
|
backup = validate_backup({
|
|
'config': {
|
|
'files': ['/etc/snapper/configs/root', '/etc/default/snapper']
|
|
}
|
|
})
|