diff options
author | 2009-01-30 16:43:32 +0000 | |
---|---|---|
committer | 2009-01-30 16:43:32 +0000 | |
commit | 6d07fd2d04338ac4cc9db704f193991cf6ee5979 (patch) | |
tree | f8ee0c7065a3cbe0bcda8fadf1495b7d4308538d /app-admin/tenshi | |
parent | Fix --as-needed bug #247299 (diff) | |
download | gentoo-2-6d07fd2d04338ac4cc9db704f193991cf6ee5979.tar.gz gentoo-2-6d07fd2d04338ac4cc9db704f193991cf6ee5979.tar.bz2 gentoo-2-6d07fd2d04338ac4cc9db704f193991cf6ee5979.zip |
Added postinst warning about making sure that monitored files are readable by
tenshi user.
(Portage version: 2.1.6.7/cvs/Linux x86_64)
Diffstat (limited to 'app-admin/tenshi')
-rw-r--r-- | app-admin/tenshi/ChangeLog | 8 | ||||
-rw-r--r-- | app-admin/tenshi/tenshi-0.10-r3.ebuild | 11 |
2 files changed, 15 insertions, 4 deletions
diff --git a/app-admin/tenshi/ChangeLog b/app-admin/tenshi/ChangeLog index 407689c31f6a..5d124276a6fa 100644 --- a/app-admin/tenshi/ChangeLog +++ b/app-admin/tenshi/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-admin/tenshi -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/tenshi/ChangeLog,v 1.55 2008/12/17 20:34:56 hncaldwell Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/tenshi/ChangeLog,v 1.56 2009/01/30 16:43:32 hncaldwell Exp $ + + 30 Jan 2009; Heath Caldwell <hncaldwell@gentoo.org> tenshi-0.10-r3.ebuild: + Added postinst warning about making sure that monitored files are readable + by tenshi. 17 Dec 2008; Heath Caldwell <hncaldwell@gentoo.org> files/tenshi-0.10-warn-logfile.patch, tenshi-0.10-r3.ebuild: diff --git a/app-admin/tenshi/tenshi-0.10-r3.ebuild b/app-admin/tenshi/tenshi-0.10-r3.ebuild index e805ac566ff8..af4862c71601 100644 --- a/app-admin/tenshi/tenshi-0.10-r3.ebuild +++ b/app-admin/tenshi/tenshi-0.10-r3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/tenshi/tenshi-0.10-r3.ebuild,v 1.2 2008/12/17 20:34:56 hncaldwell Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/tenshi/tenshi-0.10-r3.ebuild,v 1.3 2009/01/30 16:43:32 hncaldwell Exp $ inherit eutils @@ -50,3 +50,10 @@ src_install() { newinitd tenshi.gentoo-init tenshi keepdir /var/lib/tenshi } + +pkg_postinst() { + ewarn "The sample config installed to ${ROOT}etc/tenshi/tenshi.conf" + ewarn "monitors /var/log/messages which, by default, can not be read" + ewarn "by the tenshi user. Make sure that the tenshi user has read" + ewarn "permission on all the files that you want tenshi to monitor." +} |