From 03484bd0260534b4a67e739449d46ad84d5cca7e Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Mon, 6 Jan 2025 14:55:08 -0800 Subject: [PATCH] backups: Add warning that services may become unavailable Closes: #1500. Tests: - Form shows description. Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/modules/backups/forms.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plinth/modules/backups/forms.py b/plinth/modules/backups/forms.py index 7b382f607..5e037bb8b 100644 --- a/plinth/modules/backups/forms.py +++ b/plinth/modules/backups/forms.py @@ -77,7 +77,9 @@ class ScheduleForm(forms.Form): run_at_hour = forms.IntegerField( label=_('Hour of the day to trigger backup operation'), required=True, - min_value=0, max_value=23, help_text=_('In 24 hour format.')) + min_value=0, max_value=23, help_text=_( + 'In 24 hour format. Services may become temporarily unavailable ' + 'while running backup operation at this time of the day.')) selected_apps = forms.MultipleChoiceField( label=_('Included apps'), help_text=_('Apps to include in the backup'),