mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
12 lines
270 B
Python
12 lines
270 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
Application manifest for security.
|
|
"""
|
|
|
|
from plinth.modules.backups.api import validate as validate_backup
|
|
|
|
backup = validate_backup(
|
|
{'config': {
|
|
'files': ['/etc/security/access.d/50freedombox.conf']
|
|
}})
|