aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt/smokeping/files/smokeping.in
diff options
context:
space:
mode:
Diffstat (limited to 'net-mgmt/smokeping/files/smokeping.in')
-rw-r--r--net-mgmt/smokeping/files/smokeping.in41
1 files changed, 0 insertions, 41 deletions
diff --git a/net-mgmt/smokeping/files/smokeping.in b/net-mgmt/smokeping/files/smokeping.in
deleted file mode 100644
index f44b2d387059..000000000000
--- a/net-mgmt/smokeping/files/smokeping.in
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/sh
-# $FreeBSD$
-
-# PROVIDE: smokeping
-# REQUIRE: DAEMON
-# BEFORE: LOGIN
-# KEYWORD: shutdown
-
-# Define these smokeping_* variables in one of these files:
-# /etc/rc.conf
-# /etc/rc.conf.local
-# /etc/rc.conf.d/smokeping
-#
-# DO NOT CHANGE THESE DEFAULT VALUES HERE
-#
-smokeping_enable=${smokeping_enable-"NO"}
-smokeping_flags=${smokeping_flags-""}
-smokeping_pidfile=${smokeping_pidfile-"%%PREFIX%%/var/smokeping/smokeping.pid"}
-smokeping_logfile=${smokeping_logfile-"/var/log/smokeping.log"}
-smokeping_user=${smokeping_user-"%%USER%%"}
-smokeping_group=${smokeping_group-"%%GROUP%%"}
-
-. %%RC_SUBR%%
-
-name="smokeping"
-rcvar=`set_rcvar`
-command="/usr/local/bin/smokeping"
-command_args="--logfile=${smokeping_logfile}"
-pidfile="${smokeping_pidfile}"
-
-extra_commands="reload"
-reload_cmd="smokeping_reloadcmd"
-
-smokeping_reloadcmd()
-{
- $command --reload
-}
-
-load_rc_config $name
-run_rc_command "$1"
-