From: Alexander Barton Date: Thu, 6 Oct 2011 14:45:21 +0000 (+0200) Subject: Add Makefile for installing the client on Linux X-Git-Tag: rel-3~7 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=nagcollect.git;a=commitdiff_plain;h=e6e15206564c674a50ef13fa4afca7c7d47efb19 Add Makefile for installing the client on Linux --- diff --git a/contrib/Makefile.Linux b/contrib/Makefile.Linux new file mode 100644 index 0000000..a56230a --- /dev/null +++ b/contrib/Makefile.Linux @@ -0,0 +1,13 @@ +# +# NagCollect -- Nagios Data Collector for Passive Checks +# Copyright (c)2009,2011 Alexander Barton, alex@barton.de +# + +install-client: + install -d -o 0 -g 0 -m 755 /etc/cron.d + install -c -o 0 -g 0 -m 644 -p client/lib/nagcollect.cron \ + /etc/cron.d/nagcollect + +.PHONY: install-client + +# -eof-