Re: [systemd-devel] Github systemd issue 6237

2017-07-10 Thread Carlos Silva
On Mon, Jul 10, 2017 at 4:03 PM, Lennart Poettering wrote: > On current Fedora, the current regex useradd enforces appears to be > this: > > [a-zA-Z0-9._][a-zA-Z0-9._-]{0,30}[a-zA-Z0-9._-$]? So, it *does* allow for usernames starting with numbers... ___

Re: [systemd-devel] [PATCH] bus: fix duplicate comparisons

2013-10-10 Thread Carlos Silva
On Thu, Oct 10, 2013 at 11:21 AM, Olivier Brunel wrote: > No, I believe that was the point of the patch. The two tests were the > same, first testing (x < y), and then (y > x). Now it then properly > tests for (x > y) > Totally didn't read the context of the code, just the changes and the patch

Re: [systemd-devel] [PATCH] bus: fix duplicate comparisons

2013-10-10 Thread Carlos Silva
On Thu, Oct 10, 2013 at 5:14 AM, Tero Roponen wrote: > Testing for y > x is the same as testing for x < y. > > -if (y > x) > +if (x > y) > I thing you forgot to change the signs ;) ___ systemd-devel mailing list systemd-devel@lists.

Re: [systemd-devel] guidance on how to get systemd to function

2013-08-02 Thread Carlos Silva
You failed to say what's your distro. On Fri, Aug 2, 2013 at 9:03 AM, lux-integ wrote: > Greetings > > I am learning to use systemd. > > My computer has grub2 installed. the linux kernel version is > linux-3.10.4. It > has sysV-init and udev-182. I am about to remove udev and install > syste

Re: [systemd-devel] [PATCH 3/5] tpmfiles: add missing parenthesis

2013-03-02 Thread Carlos Silva
On Sat, Mar 2, 2013 at 1:46 PM, Michal Sekletar wrote: > >> -if (!i->type == IGNORE_DIRECTORY_PATH || > !streq(dent->d_name, p)) { > >> +if (!(i->type == IGNORE_DIRECTORY_PATH || > !streq(dent->d_name, p))) { > > After the change we have: > > if (i-

Re: [systemd-devel] [PATCH] fstab-generator: If we wait indefinitely for a mount, wait also for the device

2013-03-01 Thread Carlos Silva
On Fri, Mar 1, 2013 at 1:37 PM, Lennart Poettering wrote: > > > So, in the non-initrd case: what does rootwait do on the kernel > cmdline? > > > And what happens if it is not used? > > > > rootwait[KNL] Wait (indefinitely) for root device to > show up. > > U