blob: ee7e76821e90115c21cf5a543ad7db1d6bd2a981 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: zkfc
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# zkfc_enable (bool): Set to NO by default.
# Set it to YES to enable zkfc.
. /etc/rc.subr
export PATH=${PATH}:%%LOCALBASE%%/bin
name=zkfc
rcvar=zkfc_enable
load_rc_config "${name}"
: ${zkfc_enable:=NO}
: ${zkfc_user:=%%HDFS_USER%%}
command="%%PREFIX%%/sbin/hadoop-daemon.sh"
command_interpreter_execution="%%JAVA_HOME%%/bin/java"
command_args='--config %%ETCDIR%% start zkfc'
stop_cmd=zkfc_stop
status_precmd=find_pid
zkfc_stop () {
su -m ${zkfc_user} -c "${command} --config %%ETCDIR%% stop zkfc"
}
find_pid () {
rc_pid=$(check_pidfile $pidfile $command_interpreter_execution)
}
run_rc_command "$1"
|