fuel-main/mcollective/agent/fake.rb
2012-09-11 08:38:40 +00:00

13 lines
209 B
Ruby

module MCollective
module Agent
class Fake < RPC::Agent
action "echo" do
validate :msg, String
reply[:msg] = "Hello, it is my reply: #{request[:msg]}"
end
end
end
end