# HG changeset patch # User Matthias Förste # Date 1298489209 -3600 # Node ID 0de455fc3f4e63a51018ed6311f6dab5d884bf02 # Parent 2be9944bc67b8e6162165c3b819a812b9de6ac8c debianized diff -r 2be9944bc67b -r 0de455fc3f4e .hgignore --- a/.hgignore Sat Feb 12 12:54:11 2011 +0100 +++ b/.hgignore Wed Feb 23 20:26:49 2011 +0100 @@ -1,2 +1,6 @@ syntax:glob check_fsck +debian/files + +syntax:re +^debian/nagios-plugin-fsck[/.] diff -r 2be9944bc67b -r 0de455fc3f4e Makefile --- a/Makefile Sat Feb 12 12:54:11 2011 +0100 +++ b/Makefile Wed Feb 23 20:26:49 2011 +0100 @@ -17,7 +17,6 @@ install -m 0755 $(SCRIPTS) ${DESTDIR}/${plugindir}/ %: %.pl - @perl -c $< @cp -f $< $@ @chmod +x $@ diff -r 2be9944bc67b -r 0de455fc3f4e debian/changelog --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/changelog Wed Feb 23 20:26:49 2011 +0100 @@ -0,0 +1,5 @@ +nagios-plugin-fsck (0.2-1) lenny squeeze; urgency=low + + * Initial release + + -- Matthias Förste Wed, 23 Feb 2011 16:14:42 +0100 diff -r 2be9944bc67b -r 0de455fc3f4e debian/compat --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/compat Wed Feb 23 20:26:49 2011 +0100 @@ -0,0 +1,1 @@ +7 diff -r 2be9944bc67b -r 0de455fc3f4e debian/control --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/control Wed Feb 23 20:26:49 2011 +0100 @@ -0,0 +1,13 @@ +Source: nagios-plugin-fsck +Section: net +Priority: extra +Maintainer: Matthias Förste +#Build-Depends: debhelper (>= 7.0.50~) +Build-Depends: debhelper (>= 7) +Standards-Version: 3.8.4 + +Package: nagios-plugin-fsck +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends}, perl-base, perl-doc, libdate-manip-perl +Description: nagios plugin to report next filesystem check time + This plugin reports the next filesystem check time. diff -r 2be9944bc67b -r 0de455fc3f4e debian/copyright --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/copyright Wed Feb 23 20:26:49 2011 +0100 @@ -0,0 +1,26 @@ +This work was packaged for Debian by: + + Matthias Förste on Wed, 23 Feb 2011 16:14:42 +0100 + +It was downloaded from: + + + +Upstream Author(s): + + Christian Arnold + +Copyright: + + Copyright (C) 2011 by Christian Arnold and Schlittermann internet & unix support + +License: + + GNU General Public Licence + +The Debian packaging is: + + Copyright (C) 2011 Matthias Förste + +and is licensed under the GPL version 3, +see "/usr/share/common-licenses/GPL-3". diff -r 2be9944bc67b -r 0de455fc3f4e debian/rules --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/rules Wed Feb 23 20:26:49 2011 +0100 @@ -0,0 +1,13 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@