Skip to content
Snippets Groups Projects
Commit 932857ec authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

tarantoolctl: correct command syntax for adding a user to a group

parent 575cf09a
No related branches found
No related tags found
No related merge requests found
......@@ -518,7 +518,7 @@ local function enter()
if fio.stat(console_sock_path) == nil then
log.error("Can't connect to %s (%s)", console_sock_path, errno.strerror())
if not usermode and errno() == errno.EACCES then
log.error("Please add $USER to group '%s': useradd -a -G %s $USER",
log.error("Please add $USER to group '%s': usermod -a -G %s $USER",
group_name, group_name)
end
return -1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment