+++ /dev/null
-# This Makefile contains only a dist rule to generate a distribution
-# tarball, and isn't included in the distribution. The software doesn't
-# need any compilation, so there are no other rules.
-
-VERSION := $(shell grep '^afs-monitor' NEWS | head -1 | cut -d' ' -f 2)
-DATE := $(shell grep '^afs-monitor' NEWS | head -1 | cut -d' ' -f 3)
-
-SCRIPTS := check_afs_quotas check_afs_space check_afs_bos check_afs_rxdebug \
- check_afs_udebug
-EXTRA := LICENSE NEWS README
-
-all:
-
-dist:
- mkdir afs-monitor-$(VERSION)
- set -e; for script in $(SCRIPTS); do \
- sed -e 's![@]VERSION[@]!$(VERSION)!g' \
- -e 's![@]DATE[@]!$(DATE)!g' \
- $$script > afs-monitor-$(VERSION)/$$script ; \
- chmod 755 afs-monitor-$(VERSION)/$$script ; \
- done
- cp $(EXTRA) afs-monitor-$(VERSION)/
- tar cf afs-monitor-$(VERSION).tar afs-monitor-$(VERSION)
- gzip -9 afs-monitor-$(VERSION).tar
- rm -r afs-monitor-$(VERSION)
#!/usr/bin/perl -w
-our $VERSION = '@VERSION@ @DATE@';
+our $VERSION = '2.0 (2010-11-10)';
#
# check_afs_bos -- Monitor AFS bos output for problems in Nagios.
#
#!/usr/bin/perl -w
-our $VERSION = '@VERSION@ @DATE@';
+our $VERSION = '2.0 (2010-11-10)';
#
# check afs_quotas -- Monitor AFS quota usage under Nagios.
#
#!/usr/bin/perl -w
-our $VERSION = '@VERSION@ @DATE@';
+our $VERSION = '2.0 (2010-11-10)';
#
# check_afs_rxdebug -- Nagios AFS server check for waiting connections.
#
#!/usr/bin/perl -w
-our $VERSION = '@VERSION@ @DATE@';
+our $VERSION = '2.0 (2010-11-10)';
#
# check_afs_space -- Monitor AFS disk space usage under Nagios.
#
#!/usr/bin/perl -w
-our $VERSION = '@VERSION@ @DATE@';
+our $VERSION = '2.0 (2010-11-10)';
#
# check_afs_udebug -- Check AFS database servers using udebug for Nagios.
#