summaryrefslogtreecommitdiff
path: root/net-analyzer/metasploit/files/msfrpcd-4.2-initd
diff options
context:
space:
mode:
Diffstat (limited to 'net-analyzer/metasploit/files/msfrpcd-4.2-initd')
-rw-r--r--net-analyzer/metasploit/files/msfrpcd-4.2-initd22
1 files changed, 0 insertions, 22 deletions
diff --git a/net-analyzer/metasploit/files/msfrpcd-4.2-initd b/net-analyzer/metasploit/files/msfrpcd-4.2-initd
deleted file mode 100644
index 91a373f343..0000000000
--- a/net-analyzer/metasploit/files/msfrpcd-4.2-initd
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-VERSION=4.2
-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 $?
-}