bug-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#52539: Fwd: Comments in /etc/passwd don't get updated


From: Jacob First
Subject: bug#52539: Fwd: Comments in /etc/passwd don't get updated
Date: Mon, 20 Dec 2021 23:45:47 +0000

Changing the shell indeed causes the comment to be updated.

If lazy update is the correct behavior, then the docs about user
accounts are a bit misleading:

"When booting or upon completion of guix system reconfigure, the
system ensures that only the user accounts and groups specified in the
operating-system declaration exist, and with the specified properties.
Thus, account or group creations or modifications made by directly
invoking commands such as useradd are lost upon reconfiguration or
reboot. This ensures that the system remains exactly as declared."

As a user it would be helpful to know from the docs that some of the
fields actually persist across reboots/reconfigurations.

Thanks for the workaround in any case!

On Fri, Dec 17, 2021 at 4:02 AM Liliana Marie Prikler
<liliana.prikler@gmail.com> wrote:
>
> Hi,
>
> Am Donnerstag, dem 16.12.2021 um 07:00 +0000 schrieb Jacob First:
> > In my Guix system's /etc/passwd file, my user named "abc" has a
> > comment attached to it. The relevant line is:
> >
> >     abc:x:1000:998:Old
> > Comment:/home/jkf:/gnu/store/71yp1p06jy2j96bfdz43f4p6ncdym5a1-zsh-
> > 5.8/bin/zsh
> >
> > Today the users section of my current config.scm looks like this:
> >
> >     (users (cons* (user-account
> >                     (name "abc")
> >                     (group "users")
> >                     (comment "New Comment")
> >                     (supplementary-groups '("wheel"
> >                                             "netdev"
> >                                             "audio"
> >                                             "video"
> >                                             "disk"
> >                                             "cdrom"
> >                                             "docker"
> >                                             "libvirt"
> >                                             "kvm"))
> >                     (shell #~(string-append #$zsh "/bin/zsh")))
> >                    %base-user-accounts))
> >
> > After I apply this configuration with `guix system reconfigure', I
> > expect /etc/passwd to have been updated with "New Comment" in place
> > of "Old Comment". However, "Old Comment" remains.
> >
> > Similarly, if I omit the `comment' field entirely, I expect my user
> > comment to be removed from /etc/passwd, since the default value of
> > the `comment' field is documented to be an empty string (manual
> > 10.6). Again, the old comment remains.
> >
> > I am reporting this on a recent Guix version cev9c6c5, but have
> > noticed this issue for a year at least.
> What if you were to temporarily change your login shell to let's say
> bash?  IIRC, Guix is quite lazy when it comes to updating these values,
> but a change in the shell ought to get them revised.  I think the
> reason behind it is that it doesn't want to lock you out by messing
> with the password field, but that's a little unrelated here.
>
> Cheers
>





reply via email to

[Prev in Thread] Current Thread [Next in Thread]