summaryrefslogtreecommitdiff
path: root/gnu/system.scm
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2022-10-23 02:00:00 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2024-08-11 02:00:00 +0200
commitbeb37ea4ad9999c28cfb60aca5d021851f9a1176 (patch)
treea86b71a275055c0f0b6d87a10ada97ab500cc006 /gnu/system.scm
parentd73ca7ecb6e2dac91c13b8924ee6bed42c272980 (diff)
system: Use privileged-program-service-type by default.
* gnu/system.scm (operating-system-default-essential-services) (hurd-default-essential-services): Substitute privileged-program-service-type for setuid-program-service-type.
Diffstat (limited to 'gnu/system.scm')
-rw-r--r--gnu/system.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/system.scm b/gnu/system.scm
index 64060f167b0..4ac619d4eca 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -820,7 +820,7 @@ bookkeeping."
820 (operating-system-environment-variables os)) 820 (operating-system-environment-variables os))
821 (service host-name-service-type host-name) 821 (service host-name-service-type host-name)
822 procs root-fs 822 procs root-fs
823 (service setuid-program-service-type 823 (service privileged-program-service-type
824 (operating-system-setuid-programs os)) 824 (operating-system-setuid-programs os))
825 (service profile-service-type 825 (service profile-service-type
826 (operating-system-packages os)) 826 (operating-system-packages os))
@@ -859,7 +859,7 @@ bookkeeping."
859 (list `("hosts" ,hosts-file))) 859 (list `("hosts" ,hosts-file)))
860 (service hosts-service-type 860 (service hosts-service-type
861 (local-host-entries host-name))) 861 (local-host-entries host-name)))
862 (service setuid-program-service-type 862 (service privileged-program-service-type
863 (operating-system-setuid-programs os)) 863 (operating-system-setuid-programs os))
864 (service profile-service-type (operating-system-packages os))))) 864 (service profile-service-type (operating-system-packages os)))))
865 865