aboutsummaryrefslogtreecommitdiff
path: root/textproc/opensearch/files/opensearch.in
blob: 71334ce1ee010ed2590fcd774d0e006e3a6ed801 (plain) (blame)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#!/bin/sh

# PROVIDE: opensearch
# REQUIRE: DAEMON
# BEFORE: LOGIN
# KEYWORD: shutdown
#
# Add the following line to /etc/rc.conf to enable opensearch:
#
# opensearch_enable="YES"
#
# opensearch_user (username): Set to opensearch by default.
#               Set it to required username.
# opensearch_group (group):   Set to opensearch by default.
#               Set it to required group.
# opensearch_config (path):   Set to %%PREFIX%%/etc/opensearch/opensearch.yml by default.
#               Set it to the config file location.
# opensearch_java_home (path): Set to %%JAVA_HOME%% by default.
#               Set it to the root of the JDK to use.
#
. /etc/rc.subr

name=opensearch
rcvar=opensearch_enable

load_rc_config ${name}

: ${opensearch_enable:=NO}
: ${opensearch_user=opensearch}
: ${opensearch_group=opensearch}
: ${opensearch_config=%%PREFIX%%/etc/opensearch}
: ${opensearch_login_class=root}
: ${opensearch_java_home="%%JAVA_HOME%%"}

required_files="${opensearch_config}/opensearch.yml"
_pidprefix=/var/run/opensearch/opensearch
pidfile=${_pidprefix}.pid
procname=${opensearch_java_home}/bin/java

extra_commands="console status"
console_cmd=opensearch_console
start_precmd=opensearch_precmd
command=%%PREFIX%%/lib/opensearch/bin/opensearch
command_args="-d --pidfile=${pidfile}"

export OPENSEARCH_PATH_CONF=${opensearch_config}
export JAVA_HOME=${opensearch_java_home}

opensearch_precmd()
{
    /usr/bin/install -d -o ${opensearch_user} -g ${opensearch_group} -m 755 ${pidfile%/*}
    /usr/bin/install -d -o ${opensearch_user} -g ${opensearch_group} -m 755 /var/db/opensearch
    /usr/bin/install -d -o ${opensearch_user} -g ${opensearch_group} -m 755 /var/log/opensearch
}

opensearch_console()
{
    command_args=""
    run_rc_command "start"
}

if [ -n "$2" ]; then
    profile="$2"
    if [ "x${opensearch_profiles}" != "x" ]; then
        eval opensearch_config="\${opensearch_${profile}_config:-}"
        if [ "x${opensearch_config}" = "x" ]; then
            echo "You must define a configuration  (opensearch_${profile}_config)"
            exit 1
        fi
	export OPENSEARCH_PATH_CONF=${opensearch_config}
        required_files="${opensearch_config}/opensearch.yml"
        required_files="${opensearch_config}/jvm.options"
        eval opensearch_enable="\${opensearch_${profile}_enable:-${opensearch_enable}}"
        pidfile="${_pidprefix}.${profile}.pid"
	command_args="-d --pidfile=${pidfile}"
	echo "===> opensearch profile: ${profile}"
    else
        echo "$0: extra argument ignored"
    fi
else
    if [ "x${opensearch_profiles}" != "x" -a "x$1" != "x" ]; then
        for profile in ${opensearch_profiles}; do
            eval _enable="\${opensearch_${profile}_enable}"
            case "x${_enable:-${opensearch_enable}}" in
            x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee])
                continue
                ;;
            x[Yy][Ee][Ss])
                ;;
            *)
                if test -z "$_enable"; then
                    _var=opensearch_enable
                else
                    _var=opensearch_"${profile}"_enable
                fi
                echo "Bad value" \
                    "'${_enable:-${opensearch_enable}}'" \
                    "for ${_var}. " \
                    "Profile ${profile} skipped."
                continue
                ;;
            esac
            %%PREFIX%%/etc/rc.d/opensearch $1 ${profile}
            retcode="$?"
            if [ "0${retcode}" -ne 0 ]; then
                failed="${profile} (${retcode}) ${failed:-}"
            else
                success="${profile} ${success:-}"
            fi
        done
        exit 0
    fi
fi

run_rc_command "$1"