# File lib/rudy/machines.rb, line 66
66:     def restart
67:       group = list 
68:       raise MachineGroupNotRunning, current_machine_group if group.nil?
69:       group.each do |inst|
70:         inst.restart
71:       end
72:       group
73:     end