diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2008-06-01 20:56:24 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2008-06-01 20:56:24 +0000 |
commit | 850535a0bc687af5556b69f8e4fa6baf3fc25fdc (patch) | |
tree | 33cd21368a196e711d38c20929d7ca53888bed86 /net-analyzer | |
parent | gnome-base/gnome: pkgmove from gnome2-user-docs to gnome-user-docs (diff) | |
download | gentoo-2-850535a0bc687af5556b69f8e4fa6baf3fc25fdc.tar.gz gentoo-2-850535a0bc687af5556b69f8e4fa6baf3fc25fdc.tar.bz2 gentoo-2-850535a0bc687af5556b69f8e4fa6baf3fc25fdc.zip |
Bug #205293, dcron is fussy about crontab call syntax.
(Portage version: 2.1.5.2)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/munin/ChangeLog | 5 | ||||
-rw-r--r-- | net-analyzer/munin/munin-1.3.4.ebuild | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/net-analyzer/munin/ChangeLog b/net-analyzer/munin/ChangeLog index 94da03335139..1a635a8bcddb 100644 --- a/net-analyzer/munin/ChangeLog +++ b/net-analyzer/munin/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/munin # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/munin/ChangeLog,v 1.12 2008/05/31 21:10:40 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/munin/ChangeLog,v 1.13 2008/06/01 20:56:24 robbat2 Exp $ + + 01 Jun 2008; Robin H. Johnson <robbat2@gentoo.org> munin-1.3.4.ebuild: + Bug #205293, dcron is fussy about crontab call syntax. *munin-1.3.4 (31 May 2008) diff --git a/net-analyzer/munin/munin-1.3.4.ebuild b/net-analyzer/munin/munin-1.3.4.ebuild index 057208b75854..acfec85fc883 100644 --- a/net-analyzer/munin/munin-1.3.4.ebuild +++ b/net-analyzer/munin/munin-1.3.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/munin/munin-1.3.4.ebuild,v 1.1 2008/05/31 21:10:40 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/munin/munin-1.3.4.ebuild,v 1.2 2008/06/01 20:56:24 robbat2 Exp $ inherit eutils @@ -107,7 +107,9 @@ pkg_config() { einfo "installation from /var/lib/munin/crontab" einfo "If you have a large site, you may wish to customize it." read - crontab -u munin /var/lib/munin/crontab + # dcron is very fussy about syntax + # the following is the only form that works in BOTH dcron and vixie-cron + crontab - -u munin </var/lib/munin/crontab } pkg_postinst() { |