summaryrefslogtreecommitdiff
path: root/mail/sqlgrey/files/sqlgrey.in
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-09-01 21:25:59 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-09-01 21:25:59 +0000
commit8003ba152f15aa82aaadd76fcd6b669cc0cc9981 (patch)
tree7842527232644d8f0fc76639a38e9596a910d381 /mail/sqlgrey/files/sqlgrey.in
parentConvert to USES=libtool and add INSTALL_TARGET=install-strip (diff)
Remove non staged ports without pending PR from ma*
Notes
Notes: svn path=/head/; revision=366959
Diffstat (limited to 'mail/sqlgrey/files/sqlgrey.in')
-rw-r--r--mail/sqlgrey/files/sqlgrey.in40
1 files changed, 0 insertions, 40 deletions
diff --git a/mail/sqlgrey/files/sqlgrey.in b/mail/sqlgrey/files/sqlgrey.in
deleted file mode 100644
index 2c807ba4fd62..000000000000
--- a/mail/sqlgrey/files/sqlgrey.in
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh
-
-# $FreeBSD$
-#
-# PROVIDE: sqlgrey
-# REQUIRE: LOGIN
-# BEFORE: mail
-# KEYWORD: shutdown
-#
-# Add the following lines to /etc/rc.conf to enable sqlgrey:
-#
-# sqlgrey_enable="YES"
-#
-# See man sqlgrey for flags or the config file.
-
-. /etc/rc.subr
-
-name=sqlgrey
-rcvar=sqlgrey_enable
-
-command=%%PREFIX%%/sbin/sqlgrey
-extra_commands=reload
-command_interpreter=%%PERL%%
-
-stop_postcmd=${name}_poststop
-
-load_rc_config $name
-
-sqlgrey_enable=${sqlgrey_enable-"NO"}
-required_files=${sqlgrey_config-"%%PREFIX%%/%%ETCDIR%%/sqlgrey.conf"}
-pidfile=${sqlgrey_pidfile-"/var/run/sqlgrey.pid"}
-
-command_args="--configfile=${required_files} --pidfile=${pidfile} --daemonize"
-
-sqlgrey_poststop()
-{
- rm -f $pidfile
-}
-
-run_rc_command "$1"