summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-02-05New release with the queue-flushing change.release-0.19Steve Kemp
2015-02-05Simplify the flushing of queues.Steve Kemp
Now that we've moved to using redis by default the handling of queue-flushing needs to change. We can simply get rid of the busy-wait and run a redis "del" operation. With that in mind we've moved the flushing logic to our queue abstraction layer, and simplified our queue-helper script.
2015-02-05Added tag release-0.18 for changeset 6278764cc925Steve Kemp
2015-02-05Move our ruby libraries.release-0.18Steve Kemp
This is designed to help them be loaded by ruby1.8 + 1.9.1.
2015-02-04Added tag release-0.17 for changeset 8a4b0deefe71Steve Kemp
2015-02-04New release now we have the shebang lines corrected.release-0.17Steve Kemp
2015-02-04Hint to ruby that rubygems should be loaded.Steve Kemp
This allows our redis-library to be used.
2015-02-04New releaseSteve Kemp
2015-02-04Updated dependencies on LDAP ruby package.Steve Kemp
On Squeeze we must use libldap-ruby1.8, on jessie we use libldap-ruby
2015-01-30Two new releases.Steve Kemp
There were only changes sufficient for one change, but I had to make two because this would silence the lintian warning: W: custodian: latest-debian-changelog-entry-changed-to-native Adding a second, fake, release stops that.
2015-01-30Updated Debian standards version.Steve Kemp
This mostly meant removing the prefix from the description(s) of the packages.
2015-01-30Silence lintian manpage warnings.Steve Kemp
The Bytemark-specific scripts have no manpages, and that is accptible.
2015-01-30Removed executable permissions, this is a library.Steve Kemp
2015-01-29Removed shebang.Steve Kemp
This refereed to ruby1.8 in a versioned way which was wrong.
2015-01-29Don't output messages unless $DEBUG=1Steve Kemp
2015-01-29Added simple test casesSteve Kemp
2015-01-22Allow inverted tests for MX.Steve Kemp
(i.e. "pxe.io must not run mx otherwise 'no mail for steve'.")
2015-01-21Document queue-typeSteve Kemp
2015-01-21Added accessor for the queue-type.Steve Kemp
Default to redis as this is more likely to be installed.
2015-01-21Read the queue-type from the settings-object.Steve Kemp
This replaces redis as a hard-wired default.
2015-01-21Don't hard-wire redis as the queue-type.Steve Kemp
Read it from the configuration-file and don't expose the server flag which is now bogus.
2015-01-19Removed obsolete queue_name fieldSteve Kemp
2015-01-19Updated to use our queue-abstraction.Steve Kemp
This means we can queue/dequeue to either Redis or Beanstalkd.
2015-01-13Updated to actually test the backend MX servers.Steve Kemp
We now connec to the MX-servers via XX:25 and alert if that fails.:wq
2015-01-13Lookup MX record(s) for the domain under test.Steve Kemp
2015-01-13Stub MX-test.Steve Kemp
This will perform a DNS-lookup AND SMTP-test for the given domain.
2015-01-13Updated to include search-path.Steve Kemp
This is a temporary fix for local-testing.
2015-01-13Added queue-abstraction layer.Steve Kemp
This is not-yet used, but it will-be shortly. The intention is that we can seamlessly swap out the queue implemention in the near future so that we'll be able to use Redis.
2015-01-13typo-fixSteve Kemp
2015-01-13Minor update, and bump of copyright year.Steve Kemp
2015-01-13Updated mocha-loadingSteve Kemp
2015-01-13Test that returning the test-definition works.Steve Kemp
This will be needed when we want to save to the redis-log.
2015-01-13Avoid hard-wiring 1.8 rubySteve Kemp
2015-01-13Removed the deprecated `custodian-instances` script.Steve Kemp
This was designed to deploy multiple workers on a single host, via consistent "runit" system. It is no longer in use.
2015-01-13Don't marry our code to ruby1.8Steve Kemp
2015-01-13Updated the mocha-gem usageSteve Kemp
2015-01-08Simplified error messages for DNS failures.Steve Kemp
We show the result we expected and what we received, but we do so with quoted strings. So rather than: * one * two we show "one,two". This closes #8538.
2015-01-08Updated test to cope with DNS changesSteve Kemp
These days google.com resolves over both IPv4 and IPv6.
2014-12-11Updated changelogPatrick J Cherry
2014-12-11Fixed typoPatrick J Cherry
2014-12-11Updated changelogPatrick J Cherry
2014-12-11Resolve DNS server name to an IP before connecting, so ruby knowsPatrick J Cherry
which protocol to use.
2014-12-11Updated changelogPatrick J Cherry
2014-12-11Moved test-dns-types so that it gets included in the test suite.Patrick J Cherry
Added test for run_test. --HG-- rename : t/test-dns-types => t/test-dns-types.rb
2014-12-11Use getnameinfo rather than getaddrinfoPatrick J Cherry
2014-12-11Tidied up test suite include pathPatrick J Cherry
2014-12-11Renamed ldap test so it gets included in the test suitePatrick J Cherry
--HG-- rename : t/test-ldap-probe.t => t/test-ldap-probe.rb
2014-12-11Fixed DNS reverse lookups to use getnameinfoPatrick J Cherry
2014-12-11Removed ruby1.8ismsPatrick J Cherry
2014-12-11Further tidying the DNS class to use an array rather than a string toPatrick J Cherry
compare stuff.