summaryrefslogtreecommitdiff
path: root/devel/oozie/files/oozied.in
diff options
context:
space:
mode:
Diffstat (limited to 'devel/oozie/files/oozied.in')
-rw-r--r--devel/oozie/files/oozied.in31
1 files changed, 0 insertions, 31 deletions
diff --git a/devel/oozie/files/oozied.in b/devel/oozie/files/oozied.in
deleted file mode 100644
index 4a17073998c4..000000000000
--- a/devel/oozie/files/oozied.in
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-# PROVIDE: oozied
-# REQUIRE: LOGIN
-# KEYWORD: shutdown
-#
-# oozied_enable (bool): Set to NO by default.
-# Set it to YES to enable oozied.
-
-. /etc/rc.subr
-
-export PATH=${PATH}:%%LOCALBASE%%/bin
-name=oozied
-rcvar=oozied_enable
-pidfile=%%OOZIE_RUNDIR%%/${name}.pid
-
-load_rc_config "${name}"
-
-: ${oozied_enable:=NO}
-oozied_user=%%OOZIE_USER%%
-
-command="%%PREFIX%%/oozie/bin/oozied.sh"
-command_args="start"
-
-oozied_stop () {
- ${command} stop
-}
-
-run_rc_command "$1"