guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/04: services: gdm: Remove 'allow-root?' option.


From: guix-commits
Subject: 03/04: services: gdm: Remove 'allow-root?' option.
Date: Sun, 30 Dec 2018 04:21:59 -0500 (EST)

dannym pushed a commit to branch master
in repository guix.

commit de409e82261eb147b6614aef8731d795ca664ef0
Author: Timothy Sample <address@hidden>
Date:   Sat Dec 29 21:42:03 2018 -0500

    services: gdm: Remove 'allow-root?' option.
    
    This option results in allowing all login attempts without asking for
    credentials.  The name is confusing, but rather than rename it, we will
    remove it, since it seems like a feature that no one would want.
    
    * gnu/services/xorg.scm (<gdm-configuration>): Remove 'allow-root?'.
    (gdm-pam-service): Do not use 'gdm-configuration-allow-root?'.
    
    Signed-off-by: Danny Milosavljevic <address@hidden>
---
 gnu/services/xorg.scm | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/gnu/services/xorg.scm b/gnu/services/xorg.scm
index ea8433a..48aa8f6 100644
--- a/gnu/services/xorg.scm
+++ b/gnu/services/xorg.scm
@@ -2,6 +2,7 @@
 ;;; Copyright © 2017 Andy Wingo <address@hidden>
 ;;; Copyright © 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <address@hidden>
 ;;; Copyright © 2015 Sou Bunnbu <address@hidden>
+;;; Copyright © 2018 Timothy Sample <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -625,7 +626,6 @@ makes the good ol' XlockMore usable."
   gdm-configuration?
   (gdm gdm-configuration-gdm (default gdm))
   (allow-empty-passwords? gdm-configuration-allow-empty-passwords? (default 
#t))
-  (allow-root? gdm-configuration-allow-root? (default #t))
   (auto-login? gdm-configuration-auto-login? (default #f))
   (default-user gdm-configuration-default-user (default #f))
   (x-server gdm-configuration-x-server))
@@ -680,10 +680,9 @@ makes the good ol' XlockMore usable."
     (auth (list (pam-entry
                  (control "required")
                  (module "pam_permit.so")))))
-   (unix-pam-service
-    "gdm-password"
-    #:allow-empty-passwords? (gdm-configuration-allow-empty-passwords? config)
-    #:allow-root? (gdm-configuration-allow-root? config))))
+   (unix-pam-service "gdm-password"
+                     #:allow-empty-passwords?
+                     (gdm-configuration-allow-empty-passwords? config))))
 
 (define (gdm-shepherd-service config)
   (list (shepherd-service



reply via email to

[Prev in Thread] Current Thread [Next in Thread]