summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog9
-rw-r--r--lib/custodian.rb2
2 files changed, 10 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 718a99a..62e1088 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+custodian (2012:1120-2) stable; urgency=low
+
+ * Removed manpages.
+ * Increased timeout period and retry period
+ - To avoid flaps until we rework the alerting with mauve.
+ * Fixed most scripts to be ready for ruby 1.9.
+
+ -- Steve Kemp <steve@bytemark.co.uk> Tue, 20 Nov 2012 14:00:41 +0000
+
custodian (2012:1120-1) stable; urgency=low
* Added dnsutil.rb - Updated multiping to use it, along with the alerter.
diff --git a/lib/custodian.rb b/lib/custodian.rb
index fec928b..e5a139c 100644
--- a/lib/custodian.rb
+++ b/lib/custodian.rb
@@ -67,7 +67,7 @@ class Custodian
if ( ENV['REPEAT'] )
@retry_count=ENV['REPEAT'].to_i
else
- @retry_count=3
+ @retry_count=5
end
end