You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for reporting this. It looks like useradd is present on Debian/Ubuntu and CentOS, so I will go ahead and switch from adduser, once I have tested the change.
the makefile uses
adduser --system --no-create-home --group mercury
to add a new usermercury
and create a same-named group.adduser
is an actual alias foruseradd
and may not be available in some linux distros (eg. OpenSUSE). This will causemake install
to fail.The equivalent command should be
useradd --system --user-group mercury
in these distros.The text was updated successfully, but these errors were encountered: