29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
From 1f05aab7135ee3c5843c24a2a89bb707dcbe0dc5 Mon Sep 17 00:00:00 2001
|
|
From: Radek Vykydal <rvykydal@redhat.com>
|
|
Date: Thu, 17 Sep 2020 07:49:54 +0200
|
|
Subject: [PATCH] Root password is mandatory if there is *not* admin user.
|
|
|
|
Related: rhbz#1876727
|
|
---
|
|
pyanaconda/ui/tui/spokes/root_password.py | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/pyanaconda/ui/tui/spokes/root_password.py b/pyanaconda/ui/tui/spokes/root_password.py
|
|
index 6ebc8f65e..345b5dcfe 100644
|
|
--- a/pyanaconda/ui/tui/spokes/root_password.py
|
|
+++ b/pyanaconda/ui/tui/spokes/root_password.py
|
|
@@ -61,8 +61,8 @@ class PasswordSpoke(FirstbootSpokeMixIn, NormalTUISpoke):
|
|
|
|
@property
|
|
def mandatory(self):
|
|
- """Root password spoke is mandatory if no users with admin rights have been requested."""
|
|
- return self._users_module.CheckAdminUserExists()
|
|
+ """Only mandatory if no admin user has been requested."""
|
|
+ return not self._users_module.CheckAdminUserExists()
|
|
|
|
@property
|
|
def status(self):
|
|
--
|
|
2.23.0
|
|
|