mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-11 09:04:54 +00:00
Closes: #2564 Tests: - Changing the domain name in quassel app page set the expected file permissions. Changing the value in the code results in file getting created with changed permissions. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
16 lines
443 B
Python
16 lines
443 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""Configure Quassel."""
|
|
|
|
import pathlib
|
|
|
|
from plinth.actions import privileged
|
|
|
|
|
|
@privileged
|
|
def set_domain(domain_name: str):
|
|
"""Write a file containing domain name."""
|
|
domain_file = pathlib.Path('/var/lib/quassel/domain-freedombox')
|
|
domain_file.write_text(domain_name, encoding='utf-8')
|
|
# Ensure that that file is readable by non-privileged process.
|
|
domain_file.chmod(0o644)
|