summaryrefslogtreecommitdiff
path: root/textproc/elasticsearch2/files
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/elasticsearch2/files')
-rw-r--r--textproc/elasticsearch2/files/elasticsearch.in112
-rw-r--r--textproc/elasticsearch2/files/patch-bin-elasticsearch.in.sh22
-rw-r--r--textproc/elasticsearch2/files/patch-config-elasticsearch.yml15
-rw-r--r--textproc/elasticsearch2/files/pkg-message.in6
4 files changed, 155 insertions, 0 deletions
diff --git a/textproc/elasticsearch2/files/elasticsearch.in b/textproc/elasticsearch2/files/elasticsearch.in
new file mode 100644
index 000000000000..20975366a3ab
--- /dev/null
+++ b/textproc/elasticsearch2/files/elasticsearch.in
@@ -0,0 +1,112 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+# PROVIDE: elasticsearch
+# REQUIRE: NETWORKING SERVERS
+# BEFORE: DAEMON
+# KEYWORD: shutdown
+#
+# Add the following line to /etc/rc.conf to enable elasticsearch:
+#
+# elasticsearch_enable="YES"
+#
+# elasticsearch_user (username): Set to elasticsearch by default.
+# Set it to required username.
+# elasticsearch_group (group): Set to elasticsearch by default.
+# Set it to required group.
+# elasticsearch_config (path): Set to /usr/local/etc/elasticsearch/elasticsearch.yml by default.
+# Set it to the config file location.
+# elasticsearch_min_mem (num): Minumum JVM heap size, 256m by default.
+# elasticsearch_max_mem (num): Maximum JVM heap size, 1g by default.
+# elasticsearch_props (args): Additional java properties or arguments.
+# elasticsearch_tmp (path): Set to /var/tmp/elasticsearch by default.
+# Set it to the path to be used for temp files.
+#
+. /etc/rc.subr
+
+name=elasticsearch
+rcvar=elasticsearch_enable
+
+load_rc_config ${name}
+
+: ${elasticsearch_enable:="NO"}
+: ${elasticsearch_user:=%%SEARCHUSER%%}
+: ${elasticsearch_group:=%%SEARCHGROUP%%}
+: ${elasticsearch_config:="%%PREFIX%%/etc/elasticsearch"}
+: ${elasticsearch_tmp:="/var/tmp/elasticsearch"}
+
+required_files="${elasticsearch_config}/elasticsearch.yml"
+pidfile="/var/run/${name}.pid"
+
+extra_commands="console status"
+console_cmd="elasticsearch_console"
+start_precmd="elasticsearch_precmd"
+status_cmd="elasticsearch_status"
+stop_cmd="elasticsearch_stop"
+command="%%PREFIX%%/lib/elasticsearch/bin/elasticsearch"
+command_args="-d --pidfile=${pidfile}"
+
+elasticsearch_precmd()
+{
+ touch ${pidfile}
+ chown ${elasticsearch_user}:${elasticsearch_group} ${pidfile}
+ /usr/bin/install -d -o ${elasticsearch_user} -g ${elasticsearch_group} -m 750 ${elasticsearch_tmp}
+ /usr/bin/install -d -o ${elasticsearch_user} -g ${elasticsearch_group} -m 750 /var/db/elasticsearch
+ /usr/bin/install -d -o ${elasticsearch_user} -g ${elasticsearch_group} -m 750 /var/log/elasticsearch
+}
+
+elasticsearch_console()
+{
+ command_args=""
+ run_rc_command "start"
+}
+
+
+elasticsearch_stop()
+{
+ rc_pid=$(elasticsearch_check_pidfile $pidfile)
+
+ if [ -z "$rc_pid" ]; then
+ [ -n "$rc_fast" ] && return 0
+ echo "${name} not running? (check $pidfile)."
+ return 1
+ fi
+
+ echo "Stopping ${name}."
+ kill ${rc_pid} 2> /dev/null
+}
+
+elasticsearch_status()
+{
+ rc_pid=$(elasticsearch_check_pidfile $pidfile)
+
+ if [ -z "$rc_pid" ]; then
+ [ -n "$rc_fast" ] && return 0
+ echo "${name} not running? (check $pidfile)."
+ return 1
+ fi
+ echo "${name} is running as pid ${rc_pid}."
+}
+
+elasticsearch_check_pidfile()
+{
+ _pidfile=$1
+ if [ -z "$_pidfile" ]; then
+ err 3 'USAGE: elasticsearch_check_pidfile pidfile'
+ fi
+ if [ ! -f $_pidfile ]; then
+ debug "pid file ($_pidfile): not readable."
+ return
+ fi
+ read _pid _junk < $_pidfile
+ if [ -z "$_pid" ]; then
+ debug "pid file ($_pidfile): no pid in file."
+ return
+ fi
+ if [ -n "`%%LOCALBASE%%/bin/jps -l | grep -e "^$_pid"`" ]; then
+ echo -n $_pid
+ fi
+}
+
+run_rc_command "$1"
diff --git a/textproc/elasticsearch2/files/patch-bin-elasticsearch.in.sh b/textproc/elasticsearch2/files/patch-bin-elasticsearch.in.sh
new file mode 100644
index 000000000000..ccc1f18eb10c
--- /dev/null
+++ b/textproc/elasticsearch2/files/patch-bin-elasticsearch.in.sh
@@ -0,0 +1,22 @@
+--- bin/elasticsearch.in.sh.orig 2015-11-19 16:02:28.386051810 -0500
++++ bin/elasticsearch.in.sh 2015-11-19 16:02:56.618049877 -0500
+@@ -1,5 +1,19 @@
+ #!/bin/sh
+
++if [ `uname -o` == "FreeBSD" ]; then
++ . /etc/rc.subr
++ load_rc_config elasticsearch
++ ES_MIN_MEM=${elasticsearch_min_mem}
++ ES_MAX_MEM=${elasticsearch_max_mem}
++ ES_HEAP_NEW_SIZE=${elasticsearch_heap_newsize}
++ ES_DIRECT_SIZE=${elasticsearch_direct_size}
++ ES_USE_IPV4=${elasticsearch_use_ipv4}
++ ES_GC_OPTS=${elasticsearch_gc_opts}
++ ES_GC_LOG_FILE=${elasticsearch_gc_logfile}
++ JAVA_OPTS="$JAVA_OPTS -Des.path.conf=${elasticsearch_config:="%%PREFIX%%/etc/elasticsearch"}"
++ JAVA_OPTS="$JAVA_OPTS -Des.path.scripts=${elasticsearch_scripts:="%%PREFIX%%/libexec/elasticsearch"}"
++fi
++
+ # check in case a user was using this mechanism
+ if [ "x$ES_CLASSPATH" != "x" ]; then
+ cat >&2 << EOF
diff --git a/textproc/elasticsearch2/files/patch-config-elasticsearch.yml b/textproc/elasticsearch2/files/patch-config-elasticsearch.yml
new file mode 100644
index 000000000000..3cb9c2f81be2
--- /dev/null
+++ b/textproc/elasticsearch2/files/patch-config-elasticsearch.yml
@@ -0,0 +1,15 @@
+--- config/elasticsearch.yml.orig 2015-10-21 04:41:12.000000000 -0400
++++ config/elasticsearch.yml 2015-11-19 12:34:39.766910803 -0500
+@@ -31,10 +31,12 @@
+ # Path to directory where to store the data (separate multiple locations by comma):
+ #
+ # path.data: /path/to/data
++path.data: /var/db/elasticsearch
+ #
+ # Path to log files:
+ #
+ # path.logs: /path/to/logs
++path.logs: /var/log/elasticsearch
+ #
+ # ----------------------------------- Memory -----------------------------------
+ #
diff --git a/textproc/elasticsearch2/files/pkg-message.in b/textproc/elasticsearch2/files/pkg-message.in
new file mode 100644
index 000000000000..e7f3aecf52b8
--- /dev/null
+++ b/textproc/elasticsearch2/files/pkg-message.in
@@ -0,0 +1,6 @@
+======================================================================
+
+Please see %%ETCDIR%% for sample versions of
+elasticsearch.yml and logging.yml.
+
+======================================================================