diff options
author | Leo Prikler <leo.prikler@student.tugraz.at> | 2021-01-14 13:58:00 +0100 |
---|---|---|
committer | Leo Prikler <leo.prikler@student.tugraz.at> | 2021-01-20 09:04:59 +0100 |
commit | 6c5112dbb32c217abf09ff8ff9bf8c47d0aea651 (patch) | |
tree | a7b2ebc404d6ee3548d4dc6d1fe42a5e570a0f34 /gnu/system/shadow.scm | |
parent | 239af11a69a588f109d1dcd195f9abe9940cce8c (diff) | |
download | guix-6c5112dbb32c217abf09ff8ff9bf8c47d0aea651.tar.gz |
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.
Diffstat (limited to 'gnu/system/shadow.scm')
-rw-r--r-- | gnu/system/shadow.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/system/shadow.scm b/gnu/system/shadow.scm index 0538fb1a24..7c57222716 100644 --- a/gnu/system/shadow.scm +++ b/gnu/system/shadow.scm @@ -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)) |