summaryrefslogtreecommitdiff
path: root/security/sshblock/files
diff options
context:
space:
mode:
Diffstat (limited to 'security/sshblock/files')
-rw-r--r--security/sshblock/files/pkg-message.in18
-rw-r--r--security/sshblock/files/sshblock.in26
2 files changed, 0 insertions, 44 deletions
diff --git a/security/sshblock/files/pkg-message.in b/security/sshblock/files/pkg-message.in
deleted file mode 100644
index ab5acfaa6ccb..000000000000
--- a/security/sshblock/files/pkg-message.in
+++ /dev/null
@@ -1,18 +0,0 @@
-[
-{ type: install
- message: <<EOM
-To enable and use the sshblock daemon, use the following in /etc/rc.conf or
-/etc/rc.conf.local:
-
-sshblock_enable="YES"
-
-To set flags/options (optional), add:
-
-sshblock_flags="<flags>"
-
-See %%PREFIX%%/sbin/sshblock -h for possible command line options.
-
-Use %%PREFIX%%/etc/rc.d/sshblock to stop and start it.
-EOM
-}
-]
diff --git a/security/sshblock/files/sshblock.in b/security/sshblock/files/sshblock.in
deleted file mode 100644
index 0da0d074fb97..000000000000
--- a/security/sshblock/files/sshblock.in
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-# PROVIDE: sshblock
-# REQUIRE: DAEMON
-# KEYWORD: shutdown
-#
-# Add the following lines to /etc/rc.conf to enable sshblock:
-# sshblock_enable (bool): Set to "NO" by default.
-# Set it to "YES" to enable sshblock
-# sshblock_flags (string): Set sshblock flags (optional)
-#
-
-. /etc/rc.subr
-
-name="sshblock"
-rcvar=sshblock_enable
-
-command_interpreter=%%PERL%%
-command="%%PREFIX%%/sbin/sshblock"
-
-load_rc_config $name
-: ${sshblock_enable="NO"}
-
-run_rc_command "$1"