1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-25 02:50:08 +03:00

Bug in oneuser chgrp

This commit is contained in:
Carlos Martín 2011-06-28 13:19:35 +02:00
parent 46cc9ce27b
commit d1f4966fa3

View File

@ -120,7 +120,7 @@ cmd=CommandParser::CmdParser.new(ARGV) do
command :chgrp, chgrp_desc, [:range, :userid_list], :groupid do
helper.perform_actions(args[0],options,"Group changed") do |user|
user.chown(-1, args[1].to_i)
user.chgrp(args[1].to_i)
end
end