blob: 5753bdd8c7593517c0e9605649cc13cc6e59d243 (
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
|
#!/bin/sh
# PROVIDE: historyserver
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# historyserver_enable (bool): Set to NO by default.
# Set it to YES to enable resourcemanager.
. /etc/rc.subr
export PATH=${PATH}:%%LOCALBASE%%/bin
name=historyserver
rcvar=historyserver_enable
load_rc_config "${name}"
: ${historyserver_enable:=NO}
: ${historyserver_user:=%%MAPRED_USER%%}
command="%%PREFIX%%/sbin/mr-jobhistory-daemon.sh"
command_args='--config %%ETCDIR%% start historyserver'
stop_cmd=historyserver_stop
historyserver_stop () {
su -m ${historyserver_user} -c "${command} --config %%ETCDIR%% stop historyserver"
}
run_rc_command "$1"
|