diff --git a/plinth/modules/first_boot/templates/firstboot_complete.html b/plinth/modules/first_boot/templates/firstboot_complete.html index 9955af03b..96f0af71d 100644 --- a/plinth/modules/first_boot/templates/firstboot_complete.html +++ b/plinth/modules/first_boot/templates/firstboot_complete.html @@ -30,15 +30,13 @@

{% blocktrans trimmed %} - {{ box_name }} setup is now complete. To make your {{ box_name }} - functional, you need some applications. They will be installed - the first time you access them. + Without any apps, your {{ box_name }} is dull. {% endblocktrans %}

- {% trans "Go to Apps" %} + {% trans "Go install apps!" %}

{% trans "Current Network Configuration" %}

diff --git a/plinth/modules/users/forms.py b/plinth/modules/users/forms.py index 6c6f1961c..936090944 100644 --- a/plinth/modules/users/forms.py +++ b/plinth/modules/users/forms.py @@ -281,10 +281,6 @@ class FirstBootForm(ValidNewUsernameCheckMixin, auth.forms.UserCreationForm): # Restrict console login to users in admin or sudo group try: set_restricted_access(True) - message = _('Console login access restricted to users in ' - '"admin" group. This can be configured in ' - 'security settings.') - messages.success(self.request, message) except Exception: messages.error(self.request, _('Failed to restrict console access.'))