diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2017-01-12 19:01:14 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-01-15 11:24:44 +0100 |
commit | d7a7f31171c53446d085734d8b6f7927fa21779a (patch) | |
tree | 0c59b6abbeffe9132e7c347aa02765394b89485c /net-analyzer/metasploit | |
parent | media-plugins/vdr-vcd: remove unused patch (diff) | |
download | gentoo-d7a7f31171c53446d085734d8b6f7927fa21779a.tar.gz gentoo-d7a7f31171c53446d085734d8b6f7927fa21779a.tar.bz2 gentoo-d7a7f31171c53446d085734d8b6f7927fa21779a.zip |
net-analyzer/metasploit: remove unused files
Closes: https://github.com/gentoo/gentoo/pull/3447
Diffstat (limited to 'net-analyzer/metasploit')
-rw-r--r-- | net-analyzer/metasploit/files/msfrpcd-4.11-conf | 25 | ||||
-rw-r--r-- | net-analyzer/metasploit/files/msfrpcd-4.11-initd | 22 |
2 files changed, 0 insertions, 47 deletions
diff --git a/net-analyzer/metasploit/files/msfrpcd-4.11-conf b/net-analyzer/metasploit/files/msfrpcd-4.11-conf deleted file mode 100644 index dc56a9d966a6..000000000000 --- a/net-analyzer/metasploit/files/msfrpcd-4.11-conf +++ /dev/null @@ -1,25 +0,0 @@ -# Config file for /etc/init.d/msfrpcd - -# msfrpcd -h for more info - -# Bind to the following IP instead of 0.0.0.0 -MSF_OPTS="-a 127.0.0.1" - -# Bind to the following TCP port instead of default 55553 -#MSF_OPTS="${MSF_OPTS} -p 55553" - -# Specify the username to access msfrpcd -MSF_OPTS="${MSF_OPTS} -U msf" - -# Specify the password to access msfrpcd -MSF_OPTS="${MSF_OPTS} -P secret" - -# Server type, [Basic|Web] -#MSF_OPTS="${MSF_OPTS} -t Basic" - -# URI for Web server -#MSF_OPTS="${MSF_OPTS} -u " - -# Disable SSL on the XMLRPC socket -# JAVA GUI doesn't support SSL as of Nov 6, 2010 -MSF_OPTS="${MSF_OPTS} -S" diff --git a/net-analyzer/metasploit/files/msfrpcd-4.11-initd b/net-analyzer/metasploit/files/msfrpcd-4.11-initd deleted file mode 100644 index 3e40b71abb5f..000000000000 --- a/net-analyzer/metasploit/files/msfrpcd-4.11-initd +++ /dev/null @@ -1,22 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -VERSION=4.11 -PIDFILE=/var/run/msfrpcd${VERSION}.pid - -start() { - ebegin "Starting msfrpcd${VERSION}" - start-stop-daemon --start --quiet --background \ - --exec /usr/lib/metasploit${VERSION}/msfrpcd \ - --pidfile ${PIDFILE} \ - --make-pidfile -- -f ${MSF_OPTS} - eend $? -} - -stop() { - ebegin "Stopping msfrpcd${VERSION}" - start-stop-daemon --stop --quiet -s 9 --pidfile ${PIDFILE} - eend $? -} |