mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-11 08:23:49 +00:00
10 lines
295 B
Python
10 lines
295 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
Application manfiest for letsencrypt.
|
|
"""
|
|
|
|
from plinth.modules.backups.api import validate as validate_backup
|
|
|
|
# XXX: Backup and restore the Apache site configuration.
|
|
backup = validate_backup({'secrets': {'directories': ['/etc/letsencrypt/']}})
|