mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05: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 @@ (define (account-activation accounts+groups)
|
|||
<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…
Reference in a new issue