diff options
author | Andreas Unterkircher <unki@srv-vie-puppet.vie.mm-karton.com> | 2008-11-29 17:13:49 +0100 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.net> | 2017-10-19 06:43:47 +0200 |
commit | 9420ec756f695affce701978d465bde4ee8f9d14 (patch) | |
tree | d429d822b079f7df7037b17e724f48780147adba | |
parent | b9d1b238daca79ab68ede536a5439e8c09c9794f (diff) | |
download | exilog-9420ec756f695affce701978d465bde4ee8f9d14.zip exilog-9420ec756f695affce701978d465bde4ee8f9d14.tar.gz exilog-9420ec756f695affce701978d465bde4ee8f9d14.tar.bz2 |
install exilog cleanup cronjob
Signed-off-by: Andreas Unterkircher <unki@srv-vie-puppet.vie.mm-karton.com>
-rw-r--r-- | debian/changelog | 19 | ||||
-rw-r--r-- | debian/conffiles | 1 | ||||
-rw-r--r-- | debian/dirs | 1 | ||||
-rw-r--r-- | debian/exilog.cron.d | 8 | ||||
-rwxr-xr-x | debian/rules | 2 |
5 files changed, 31 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 100b942..92b7bfb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,22 @@ +exilog (0.5-8) etch; urgency=medium + + * add cron job + + -- Andreas Unterkircher <unki@mm-karton.com> Sat, 29 Nov 2008 17:05:35 +0100 + +exilog (0.5-7) etch; urgency=medium + + * show heartbeats of server agents + * enhance exilog init script + + -- Andreas Unterkircher <unki@mm-karton.com> Sat, 29 Nov 2008 16:55:23 +0100 + +exilog (0.5-6) etch; urgency=medium + + * append to logfile, do not overwrite it + + -- Andreas Unterkircher <unki@mm-karton.com> Sat, 29 Nov 2008 13:59:13 +0100 + exilog (0.5-5) etch; urgency=medium * on successfull fork, be quiet diff --git a/debian/conffiles b/debian/conffiles index d11cbdc..f85cd6f 100644 --- a/debian/conffiles +++ b/debian/conffiles @@ -1,2 +1,3 @@ etc/exilog/exilog.conf.dist etc/default/exilog +etc/cron.d/exilog diff --git a/debian/dirs b/debian/dirs index 71a2197..eeae25d 100644 --- a/debian/dirs +++ b/debian/dirs @@ -1,4 +1,5 @@ etc/exilog +etc/cron.d usr/lib/cgi-bin/exilog usr/lib/exilog usr/sbin diff --git a/debian/exilog.cron.d b/debian/exilog.cron.d new file mode 100644 index 0000000..2d222da --- /dev/null +++ b/debian/exilog.cron.d @@ -0,0 +1,8 @@ +# +# exilog cron +# + +#MAILTO=root@mydomain.com + +#enable this job, to cleanup database regulary +#0 * * * * root /usr/sbin/exilog_cleanup.pl diff --git a/debian/rules b/debian/rules index 55bad60..217ad7e 100755 --- a/debian/rules +++ b/debian/rules @@ -44,6 +44,7 @@ install: build install -d ${DESTDIR}/var/www/exilog install -d ${DESTDIR}/var/www/exilog/icons install -d ${DESTDIR}/etc/exilog + install -d ${DESTDIR}/etc/cron.d install -d ${DESTDIR}/var/run/exilog # lib stuff install -m644 lib/exilog_config.pm ${DESTDIR}/usr/lib/exilog @@ -75,6 +76,7 @@ binary-indep: build install dh_installdocs dh_installexamples dh_installinit + dh_installcron dh_link dh_compress dh_fixperms |