It looks as if there is a bug with the split-user options in 2.12 - will check it out, and push this patch if everything still works.
On Wed, Sep 17, 2014 at 4:00 PM, Guido Serra <[email protected]> wrote: > hey, any chance this made it into master? > > Zeph > > > On Monday, July 28, 2014 8:28:07 AM UTC+2, Guido Serra wrote: >> >> Signed-off-by: Guido Serra <[email protected]> >> --- >> Makefile.am | 6 +++--- >> 1 file changed, 3 insertions(+), 3 deletions(-) >> >> diff --git a/Makefile.am b/Makefile.am >> index 7666d18..a8b6396 100644 >> --- a/Makefile.am >> +++ b/Makefile.am >> @@ -1695,9 +1695,9 @@ tools/users-setup: Makefile $(userspecs) >> echo 'read confirm'; \ >> echo 'if [ "x$$confirm" != "xy" ]; then exit 0; fi'; \ >> echo 'fi'; \ >> - $(AWK) -- '{print "addgroup --system",$$1}' doc/users/groups; >> \ >> - $(AWK) -- '{if (NF > 1) {print "adduser --system >> --ingroup",$$2,$$1} else {print "adduser --system",$$1}}' doc/users/users; >> \ >> - $(AWK) -- '{print "adduser",$$1,$$2}' >> doc/users/groupmemberships; \ >> + $(AWK) -- '{print "groupadd --system",$$1}' doc/users/groups; >> \ >> + $(AWK) -- '{if (NF > 1) {print "useradd --system >> --gid",$$2,$$1} else {print "useradd --system",$$1}}' doc/users/users; \ >> + $(AWK) -- '{print "usermod --append --groups",$$2,$$1}' >> doc/users/groupmemberships; \ >> } > $@ >> chmod +x $@ >> >> -- >> 1.8.5.2 (Apple Git-48) >> >>
