mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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.
This commit is contained in:
parent
d73ca7ecb6
commit
beb37ea4ad
1 changed files with 2 additions and 2 deletions
|
@ -820,7 +820,7 @@ (define known-fs
|
|||
(operating-system-environment-variables os))
|
||||
(service host-name-service-type host-name)
|
||||
procs root-fs
|
||||
(service setuid-program-service-type
|
||||
(service privileged-program-service-type
|
||||
(operating-system-setuid-programs os))
|
||||
(service profile-service-type
|
||||
(operating-system-packages os))
|
||||
|
@ -859,7 +859,7 @@ (define (hurd-default-essential-services os)
|
|||
(list `("hosts" ,hosts-file)))
|
||||
(service hosts-service-type
|
||||
(local-host-entries host-name)))
|
||||
(service setuid-program-service-type
|
||||
(service privileged-program-service-type
|
||||
(operating-system-setuid-programs os))
|
||||
(service profile-service-type (operating-system-packages os)))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue