diff options
-rw-r--r-- | .hgignore | 9 | ||||
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 18 | ||||
-rw-r--r-- | debian/copyright | 26 | ||||
-rwxr-xr-x | debian/rules | 6 |
6 files changed, 65 insertions, 0 deletions
diff --git a/.hgignore b/.hgignore new file mode 100644 index 0000000..b1f36ca --- /dev/null +++ b/.hgignore @@ -0,0 +1,9 @@ +syntax: glob + + +debian/custodian.debhelper.log +debian/custodian.install +debian/custodian.substvars +debian/custodian/DEBIAN +debian/custodian/usr +debian/files diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..47ac763 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +custodian (2012:1113) stable; urgency=low + + * Initial release + + -- Steve Kemp <steve@bytemark.co.uk> Thu, 8 Nov 2012 15:54:55 +0000 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..4af8914 --- /dev/null +++ b/debian/control @@ -0,0 +1,18 @@ +Source: custodian +Section: net +Priority: extra +Maintainer: Steve Kemp <steve@bytemark.co.uk> +Build-Depends: debhelper (>= 7.0.0), cdbs +Standards-Version: 3.9.1 + +Package: custodian +Architecture: all +Depends: ruby1.8, libjson-ruby1.8, libbeanstalkclient-ruby1.8, ${misc:Depends} +Suggests: beanstalkd +Description: This package provides remote monitoring + This package allows you to setup a semi-distributed monitoring + solution, using the Bytemark MauveAlert server for notication. + . + The monitoring will consist of a system to enqueue tests in + a beanstalkd server, and an agent that will fetch tests from + that same queue and execute them. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..458e09b --- /dev/null +++ b/debian/copyright @@ -0,0 +1,26 @@ + +Authors: + Steve Kemp <steve@bytemark.co.uk> + +Copyright: + Copyright (c) 2012 Bytemark Computer Consulting Ltd + +Licence: + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License with + the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL; + if not, write to the Free Software Foundation, Inc., 51 Franklin Street, + Suite 500 Boston, MA 02110-1335 USA + +On Debian systems, the complete text of the GNU General Public +Licence, version 2, can be found in /usr/share/common-licenses/GPL-2. + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..c684e52 --- /dev/null +++ b/debian/rules @@ -0,0 +1,6 @@ +#!/usr/bin/make -f +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +include /usr/share/cdbs/1/rules/debhelper.mk + |