mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-13 02:20:53 +02:00
services: Do not warn, when duplicate users are eq?.
* gnu/system/shadow.scm (account-activation): Delete duplicate (eq?) users and groups before transforming them to specs and asserting, that names are unique.
This commit is contained in:
parent
239af11a69
commit
6c5112dbb3
1 changed files with 2 additions and 2 deletions
|
@ -321,13 +321,13 @@ of user '~a' is undeclared")
|
|||
<user-group> objects. Raise an error if a user account refers to a undefined
|
||||
group."
|
||||
(define accounts
|
||||
(filter user-account? accounts+groups))
|
||||
(delete-duplicates (filter user-account? accounts+groups) eq?))
|
||||
|
||||
(define user-specs
|
||||
(map user-account->gexp accounts))
|
||||
|
||||
(define groups
|
||||
(filter user-group? accounts+groups))
|
||||
(delete-duplicates (filter user-group? accounts+groups) eq?))
|
||||
|
||||
(define group-specs
|
||||
(map user-group->gexp groups))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue