mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-06-03 10:50:20 +00:00
first_boot: Enable restricted console logins
This commit is contained in:
parent
8e96e828d9
commit
82c27aabf3
@ -33,6 +33,7 @@ from plinth import actions
|
||||
from plinth import cfg
|
||||
from plinth.errors import ActionError, DomainRegistrationError
|
||||
from plinth.modules.pagekite.utils import PREDEFINED_SERVICES, run
|
||||
from plinth.modules.security.views import set_restricted_access
|
||||
from plinth.modules.users.forms import GROUP_CHOICES
|
||||
from plinth.utils import format_lazy
|
||||
|
||||
@ -76,6 +77,9 @@ class State1Form(auth.forms.UserCreationForm):
|
||||
self.login_user(self.cleaned_data['username'],
|
||||
self.cleaned_data['password1'])
|
||||
|
||||
# Restrict console login to users in admin or sudo group
|
||||
set_restricted_access(True)
|
||||
|
||||
return user
|
||||
|
||||
def login_user(self, username, password):
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user