Gentoo Archives: gentoo-commits

From: "Markus Duft (mduft)" <mduft@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-proxy/cntlm/files: cntlm.initd cntlm.confd
Date: Wed, 24 Feb 2010 13:18:19
Message-Id: E1NkH83-0006UJ-9Y@stork.gentoo.org
1 mduft 10/02/24 13:18:15
2
3 Added: cntlm.initd cntlm.confd
4 Log:
5 initially added cntlm to tree
6 (Portage version: 2.1.7.16/cvs/Linux i686)
7
8 Revision Changes Path
9 1.1 net-proxy/cntlm/files/cntlm.initd
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-proxy/cntlm/files/cntlm.initd?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-proxy/cntlm/files/cntlm.initd?rev=1.1&content-type=text/plain
13
14 Index: cntlm.initd
15 ===================================================================
16 #!/sbin/runscript
17 # Copyright 1999-2008 Gentoo Foundation
18 # Distributed under the terms of the GNU General Public License v2
19 # $Header: /var/cvsroot/gentoo-x86/net-proxy/cntlm/files/cntlm.initd,v 1.1 2010/02/24 13:18:14 mduft Exp $
20
21 PIDFILE=${PIDFILE:-/var/run/cntlm.pid}
22
23 depend() {
24 need net
25 }
26
27 start() {
28 ebegin "Starting cntlm"
29 start-stop-daemon --start --pidfile ${PIDFILE} --exec /usr/bin/cntlm -- -U cntlm ${CNTLM_OPTS}
30 eend $?
31 }
32
33 stop() {
34 ebegin "Stopping cntlm"
35 start-stop-daemon --stop --pidfile ${PIDFILE}
36 eend $?
37 }
38
39
40
41 1.1 net-proxy/cntlm/files/cntlm.confd
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-proxy/cntlm/files/cntlm.confd?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-proxy/cntlm/files/cntlm.confd?rev=1.1&content-type=text/plain
45
46 Index: cntlm.confd
47 ===================================================================
48 # cntlm init script configuration file
49
50 # here you can specify additional options to cntlm
51 # NOTE that using config file is recommended
52 CNTLM_OPTS=""