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...
___
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
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.
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
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-
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