first_boot: Enable restricted console logins

This commit is contained in:
James Valleroy 2016-06-12 15:32:54 -04:00 committed by Sunil Mohan Adapa
parent 8e96e828d9
commit 82c27aabf3
No known key found for this signature in database
GPG Key ID: 36C361440C9BC971

View File

@ -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):