aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt/macroscope/files/macroscope.in
diff options
context:
space:
mode:
Diffstat (limited to 'net-mgmt/macroscope/files/macroscope.in')
-rw-r--r--net-mgmt/macroscope/files/macroscope.in50
1 files changed, 0 insertions, 50 deletions
diff --git a/net-mgmt/macroscope/files/macroscope.in b/net-mgmt/macroscope/files/macroscope.in
deleted file mode 100644
index d204279af0ad..000000000000
--- a/net-mgmt/macroscope/files/macroscope.in
+++ /dev/null
@@ -1,50 +0,0 @@
-#!/bin/sh
-#
-# macroscope - start Macroscope daemon
-#
-# $FreeBSD$
-#
-# PROVIDE: macroscope
-# REQUIRE: DAEMON
-# KEYWORD: shutdown
-
-# -----------------------------------------------------------------------------
-# macroscope_enable="NO" # set to YES to enable macroscope
-#
-# # optional:
-# macroscope_flags # additional command line arguments
-#
-
-. /etc/rc.subr
-
-name="macroscope"
-rcvar=macroscope_enable
-
-start_precmd()
-{
- return 0
-}
-
-stop_postcmd()
-{
- rm -f "$pidfile" || warn "Could not remove $pidfile."
-}
-
-# pidfile
-eval pidfile=\$${name}_pidfile
-pidfile=${pidfile:-/var/run/${name}.pid}
-echo ${pidfile}
-
-# command and arguments
-command="%%PREFIX%%/sbin/${name}"
-
-# run this first
-start_precmd="start_precmd"
-# and this last
-stop_postcmd="stop_postcmd"
-
-load_rc_config ${name}
-
-command_args="--sniffer --daemon --pid ${pidfile}"
-
-run_rc_command "$1"