civodul pushed a commit to branch master
in repository guix.
commit b51990057c177bfe12aa9bd2c4b3d5d39492cd9d
Author: Ludovic Courtès <[email protected]>
AuthorDate: Mon Aug 19 16:36:44 2024 +0200
system: hurd: Empty default ‘privileged-programs’ list.
Fixes a bug whereby Hurd systems would find themselves including
‘%default-privileged-programs’ in addition to ‘%setuid-programs/hurd’.
* gnu/system/hurd.scm (%hurd-default-operating-system)[privileged-programs]:
New field.
Change-Id: I5b6a55a8df7e6af697d22166e9f483f6dd816e64
---
gnu/system/hurd.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/system/hurd.scm b/gnu/system/hurd.scm
index cbe0081382..6d6a20cf57 100644
--- a/gnu/system/hurd.scm
+++ b/gnu/system/hurd.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2020-2023 Ludovic Courtès <[email protected]>
+;;; Copyright © 2020-2024 Ludovic Courtès <[email protected]>
;;; Copyright © 2020, 2023 Janneke Nieuwenhuizen <[email protected]>
;;;
;;; This file is part of GNU Guix.
@@ -132,4 +132,5 @@
(locale-libcs (list glibc/hurd))
(name-service-switch #f)
(essential-services (hurd-default-essential-services
this-operating-system))
+ (privileged-programs '())
(setuid-programs %setuid-programs/hurd)))