Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/metasploit/files: msfrpcd-4.2-initd msfrpcd-4.2-conf msfweb3.4.initd msfweb3.3.initd msfweb3.confd msfweb3.3.confd msfweb3.2.confd msfrpcd-4.1-conf msfweb3.4.confd msfweb3.2.initd msfweb3.initd msfrpcd-4.1-initd
Date: Tue, 28 Feb 2012 08:09:42
Message-Id: 20120228080931.D81842004B@flycatcher.gentoo.org
1 patrick 12/02/28 08:09:31
2
3 Added: msfrpcd-4.2-initd msfrpcd-4.2-conf
4 Removed: msfweb3.4.initd msfweb3.3.initd msfweb3.confd
5 msfweb3.3.confd msfweb3.2.confd msfrpcd-4.1-conf
6 msfweb3.4.confd msfweb3.2.initd msfweb3.initd
7 msfrpcd-4.1-initd
8 Log:
9 Bump, remove old
10
11 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
12
13 Revision Changes Path
14 1.1 net-analyzer/metasploit/files/msfrpcd-4.2-initd
15
16 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/metasploit/files/msfrpcd-4.2-initd?rev=1.1&view=markup
17 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/metasploit/files/msfrpcd-4.2-initd?rev=1.1&content-type=text/plain
18
19 Index: msfrpcd-4.2-initd
20 ===================================================================
21 #!/sbin/runscript
22 # Copyright 1999-2012 Gentoo Foundation
23 # Distributed under the terms of the GNU General Public License v2
24 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/metasploit/files/msfrpcd-4.2-initd,v 1.1 2012/02/28 08:09:31 patrick Exp $
25
26 VERSION=4.2
27 PIDFILE=/var/run/msfrpcd${VERSION}.pid
28
29 start() {
30 ebegin "Starting msfrpcd${VERSION}"
31 start-stop-daemon --start --quiet --background \
32 --exec /usr/lib/metasploit${VERSION}/msfrpcd \
33 --pidfile ${PIDFILE} \
34 --make-pidfile -- -f ${MSF_OPTS}
35 eend $?
36 }
37
38 stop() {
39 ebegin "Stopping msfrpcd${VERSION}"
40 start-stop-daemon --stop --quiet -s 9 --pidfile ${PIDFILE}
41 eend $?
42 }
43
44
45
46 1.1 net-analyzer/metasploit/files/msfrpcd-4.2-conf
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/metasploit/files/msfrpcd-4.2-conf?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/metasploit/files/msfrpcd-4.2-conf?rev=1.1&content-type=text/plain
50
51 Index: msfrpcd-4.2-conf
52 ===================================================================
53 # Config file for /etc/init.d/msfrpcd
54
55 # msfrpcd -h for more info
56
57 # Bind to the following IP instead of 0.0.0.0
58 MSF_OPTS="-a 127.0.0.1"
59
60 # Bind to the following TCP port instead of default 55553
61 #MSF_OPTS="${MSF_OPTS} -p 55553"
62
63 # Specify the username to access msfrpcd
64 MSF_OPTS="${MSF_OPTS} -U msf"
65
66 # Specify the password to access msfrpcd
67 MSF_OPTS="${MSF_OPTS} -P secret"
68
69 # Server type, [Basic|Web]
70 #MSF_OPTS="${MSF_OPTS} -t Basic"
71
72 # URI for Web server
73 #MSF_OPTS="${MSF_OPTS} -u "
74
75 # Disable SSL on the XMLRPC socket
76 # JAVA GUI doesn't support SSL as of Nov 6, 2010
77 MSF_OPTS="${MSF_OPTS} -S"