Skip to content

Instantly share code, notes, and snippets.

@romanbarczynski
Created March 1, 2011 17:05
Show Gist options
  • Save romanbarczynski/849467 to your computer and use it in GitHub Desktop.
Save romanbarczynski/849467 to your computer and use it in GitHub Desktop.
now it's working
module MCollective
module Agent
class Mysql<RPC::Agent
metadata ....
action "createdb" do
status = 'Unknown'
begin
>> code that fails for unknown reason <<
rescue StandardError => e
status = "Error: #{e}"
end
reply['status'] = status
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment