Gentoo Archives: gentoo-commits

From: "Patrick McLean (chutzpah)" <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/lldpd/files: lldpd-initd-3 lldpd-initd-2
Date: Tue, 08 Jul 2014 23:17:43
Message-Id: 20140708231739.7F7522004F@flycatcher.gentoo.org
1 chutzpah 14/07/08 23:17:39
2
3 Added: lldpd-initd-3
4 Removed: lldpd-initd-2
5 Log:
6 Another revision bump, this one to fix the init script so the rundir gets created properly.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xE3F69979BB4B8928DA78E3D17CBF44EF)
9
10 Revision Changes Path
11 1.1 net-misc/lldpd/files/lldpd-initd-3
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/lldpd/files/lldpd-initd-3?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/lldpd/files/lldpd-initd-3?rev=1.1&content-type=text/plain
15
16 Index: lldpd-initd-3
17 ===================================================================
18 #!/sbin/runscript
19 # Copyright 1999-2014 Gentoo Foundation
20 # Distributed under the terms of the GNU General Public License v2
21 # $Header: /var/cvsroot/gentoo-x86/net-misc/lldpd/files/lldpd-initd-3,v 1.1 2014/07/08 23:17:39 chutzpah Exp $
22
23 name=lldpd
24 pidfile=/run/lldpd.pid
25 command=/usr/sbin/lldpd
26 retry="TERM/10/KILL/5"
27
28 depend() {
29 use net
30 }
31
32 start_pre() {
33 checkpath --directory /run/lldpd
34 }
35
36 # vim:ft=gentoo-init-d:noet:ts=4:sts=4:sw=4: