diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-09-14 18:11:53 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-09-14 18:11:53 +0000 |
commit | bf5d0bc3cd4fd688aae2c0b1b93c32ddcbf3983c (patch) | |
tree | 712ac9b7b153a2b6c198af18e3501982ae24b587 /bin | |
parent | 64eb1e8c37bfc4b35814f3aa58dd497b4bb3d8b7 (diff) | |
download | puppet-bf5d0bc3cd4fd688aae2c0b1b93c32ddcbf3983c.tar.gz |
Catching all errors encountered during loading, not just LoadError, to fix ongoing problems with rdoc/usage.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1593 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/puppet | 2 | ||||
-rwxr-xr-x | bin/puppetca | 2 | ||||
-rwxr-xr-x | bin/puppetd | 2 | ||||
-rwxr-xr-x | bin/puppetdoc | 2 | ||||
-rwxr-xr-x | bin/puppetmasterd | 2 | ||||
-rwxr-xr-x | bin/puppetrun | 4 |
6 files changed, 7 insertions, 7 deletions
diff --git a/bin/puppet b/bin/puppet index 4ad3d7441..ef78bd025 100755 --- a/bin/puppet +++ b/bin/puppet @@ -64,7 +64,7 @@ $haveusage = true begin require 'rdoc/usage' -rescue LoadError +rescue $haveusage = false end diff --git a/bin/puppetca b/bin/puppetca index d694ba294..11a75937b 100755 --- a/bin/puppetca +++ b/bin/puppetca @@ -84,7 +84,7 @@ $haveusage = true begin require 'rdoc/usage' -rescue LoadError +rescue $haveusage = false end diff --git a/bin/puppetd b/bin/puppetd index 63435860b..f4350ab59 100755 --- a/bin/puppetd +++ b/bin/puppetd @@ -155,7 +155,7 @@ require 'getoptlong' $haveusage = true begin require 'rdoc/usage' -rescue LoadError +rescue $haveusage = false end diff --git a/bin/puppetdoc b/bin/puppetdoc index 4ff8f1911..347bf1b32 100755 --- a/bin/puppetdoc +++ b/bin/puppetdoc @@ -48,7 +48,7 @@ $haveusage = true begin require 'rdoc/usage' -rescue LoadError +rescue $haveusage = false end diff --git a/bin/puppetmasterd b/bin/puppetmasterd index b88cf61f3..84456f371 100755 --- a/bin/puppetmasterd +++ b/bin/puppetmasterd @@ -105,7 +105,7 @@ $haveusage = true begin require 'rdoc/usage' -rescue LoadError +rescue $haveusage = false end diff --git a/bin/puppetrun b/bin/puppetrun index c48b5bf08..b73e2b813 100755 --- a/bin/puppetrun +++ b/bin/puppetrun @@ -121,7 +121,7 @@ end begin require 'ldap' -rescue LoadError +rescue $stderr.puts "Failed to load ruby LDAP library. LDAP functionality will not be available" end require 'puppet' @@ -174,7 +174,7 @@ $haveusage = true begin require 'rdoc/usage' -rescue LoadError +rescue $haveusage = false end |