Gentoo Archives: gentoo-commits

From: "Heath Caldwell (hncaldwell)" <hncaldwell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/tenshi: ChangeLog tenshi-0.10-r3.ebuild
Date: Fri, 30 Jan 2009 16:43:34
Message-Id: E1LSwSq-0003KW-3L@stork.gentoo.org
1 hncaldwell 09/01/30 16:43:32
2
3 Modified: ChangeLog tenshi-0.10-r3.ebuild
4 Log:
5 Added postinst warning about making sure that monitored files are readable by
6 tenshi user.
7 (Portage version: 2.1.6.7/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.56 app-admin/tenshi/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tenshi/ChangeLog?rev=1.56&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tenshi/ChangeLog?rev=1.56&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tenshi/ChangeLog?r1=1.55&r2=1.56
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-admin/tenshi/ChangeLog,v
19 retrieving revision 1.55
20 retrieving revision 1.56
21 diff -u -r1.55 -r1.56
22 --- ChangeLog 17 Dec 2008 20:34:56 -0000 1.55
23 +++ ChangeLog 30 Jan 2009 16:43:32 -0000 1.56
24 @@ -1,6 +1,10 @@
25 # ChangeLog for app-admin/tenshi
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-admin/tenshi/ChangeLog,v 1.55 2008/12/17 20:34:56 hncaldwell Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-admin/tenshi/ChangeLog,v 1.56 2009/01/30 16:43:32 hncaldwell Exp $
30 +
31 + 30 Jan 2009; Heath Caldwell <hncaldwell@g.o> tenshi-0.10-r3.ebuild:
32 + Added postinst warning about making sure that monitored files are readable
33 + by tenshi.
34
35 17 Dec 2008; Heath Caldwell <hncaldwell@g.o>
36 files/tenshi-0.10-warn-logfile.patch, tenshi-0.10-r3.ebuild:
37
38
39
40 1.3 app-admin/tenshi/tenshi-0.10-r3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tenshi/tenshi-0.10-r3.ebuild?rev=1.3&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tenshi/tenshi-0.10-r3.ebuild?rev=1.3&content-type=text/plain
44 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/tenshi/tenshi-0.10-r3.ebuild?r1=1.2&r2=1.3
45
46 Index: tenshi-0.10-r3.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/app-admin/tenshi/tenshi-0.10-r3.ebuild,v
49 retrieving revision 1.2
50 retrieving revision 1.3
51 diff -u -r1.2 -r1.3
52 --- tenshi-0.10-r3.ebuild 17 Dec 2008 20:34:56 -0000 1.2
53 +++ tenshi-0.10-r3.ebuild 30 Jan 2009 16:43:32 -0000 1.3
54 @@ -1,6 +1,6 @@
55 -# Copyright 1999-2008 Gentoo Foundation
56 +# Copyright 1999-2009 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/app-admin/tenshi/tenshi-0.10-r3.ebuild,v 1.2 2008/12/17 20:34:56 hncaldwell Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/app-admin/tenshi/tenshi-0.10-r3.ebuild,v 1.3 2009/01/30 16:43:32 hncaldwell Exp $
60
61 inherit eutils
62
63 @@ -50,3 +50,10 @@
64 newinitd tenshi.gentoo-init tenshi
65 keepdir /var/lib/tenshi
66 }
67 +
68 +pkg_postinst() {
69 + ewarn "The sample config installed to ${ROOT}etc/tenshi/tenshi.conf"
70 + ewarn "monitors /var/log/messages which, by default, can not be read"
71 + ewarn "by the tenshi user. Make sure that the tenshi user has read"
72 + ewarn "permission on all the files that you want tenshi to monitor."
73 +}