summaryrefslogtreecommitdiffstats
path: root/lib/puppet/provider/naginator.rb
diff options
context:
space:
mode:
authorMarkus Roberts <Markus@reality.com>2010-07-09 18:06:37 -0700
committerMarkus Roberts <Markus@reality.com>2010-07-09 18:06:37 -0700
commit07b15bf6fa2a2183f73fcb9b6740c7df75c8b47b (patch)
treef4f20be112f0c8832cb2e9681935a04bb0d197cf /lib/puppet/provider/naginator.rb
parent8d1fbe4586c91682cdda0cb271649e918fd9778b (diff)
downloadpuppet-07b15bf6fa2a2183f73fcb9b6740c7df75c8b47b.tar.gz
puppet-07b15bf6fa2a2183f73fcb9b6740c7df75c8b47b.tar.xz
puppet-07b15bf6fa2a2183f73fcb9b6740c7df75c8b47b.zip
Code smell: Avoid unneeded blocks
Replaced 45 occurances of (DEF) begin (LINES) rescue(.*) (LINES) end end with 3 Examples: The code: def find(name) begin self.const_get(name.to_s.capitalize) rescue puts "Unable to find application '#{name.to_s}'." Kernel::exit(1) end end becomes: def find(name) self.const_get(name.to_s.capitalize) rescue puts "Unable to find application '#{name.to_s}'." Kernel::exit(1) end The code: def exit_on_fail(message, code = 1) begin yield rescue RuntimeError, NotImplementedError => detail puts detail.backtrace if Puppet[:trace] $stderr.puts "Could not #{message}: #{detail}" exit(code) end end becomes: def exit_on_fail(message, code = 1) yield rescue RuntimeError, NotImplementedError => detail puts detail.backtrace if Puppet[:trace] $stderr.puts "Could not #{message}: #{detail}" exit(code) end The code: def start begin case ssl when :tls @connection = LDAP::SSLConn.new(host, port, true) when true @connection = LDAP::SSLConn.new(host, port) else @connection = LDAP::Conn.new(host, port) end @connection.set_option(LDAP::LDAP_OPT_PROTOCOL_VERSION, 3) @connection.set_option(LDAP::LDAP_OPT_REFERRALS, LDAP::LDAP_OPT_ON) @connection.simple_bind(user, password) rescue => detail raise Puppet::Error, "Could not connect to LDAP: #{detail}" end end becomes: def start case ssl when :tls @connection = LDAP::SSLConn.new(host, port, true) when true @connection = LDAP::SSLConn.new(host, port) else @connection = LDAP::Conn.new(host, port) end @connection.set_option(LDAP::LDAP_OPT_PROTOCOL_VERSION, 3) @connection.set_option(LDAP::LDAP_OPT_REFERRALS, LDAP::LDAP_OPT_ON) @connection.simple_bind(user, password) rescue => detail raise Puppet::Error, "Could not connect to LDAP: #{detail}" end
Diffstat (limited to 'lib/puppet/provider/naginator.rb')
-rw-r--r--lib/puppet/provider/naginator.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/puppet/provider/naginator.rb b/lib/puppet/provider/naginator.rb
index 592eb43fd..75337f2bf 100644
--- a/lib/puppet/provider/naginator.rb
+++ b/lib/puppet/provider/naginator.rb
@@ -24,11 +24,9 @@ class Puppet::Provider::Naginator < Puppet::Provider::ParsedFile
end
def self.parse(text)
- begin
Nagios::Parser.new.parse(text.gsub(NAME_STRING, "_naginator_name"))
- rescue => detail
+ rescue => detail
raise Puppet::Error, "Could not parse configuration for #{resource_type.name}: #{detail}"
- end
end
def self.to_file(records)