[arch-commits] Commit in elasticsearch/repos/community-x86_64 (20 files)
Massimiliano Torromeo
mtorromeo at archlinux.org
Thu May 2 16:33:10 UTC 2019
Date: Thursday, May 2, 2019 @ 16:33:07
Author: mtorromeo
Revision: 457756
archrelease: copy trunk to community-x86_64
Added:
elasticsearch/repos/community-x86_64/PKGBUILD
(from rev 457755, elasticsearch/trunk/PKGBUILD)
elasticsearch/repos/community-x86_64/elasticsearch-env
(from rev 457755, elasticsearch/trunk/elasticsearch-env)
elasticsearch/repos/community-x86_64/elasticsearch-keystore.service
(from rev 457755, elasticsearch/trunk/elasticsearch-keystore.service)
elasticsearch/repos/community-x86_64/elasticsearch-keystore at .service
(from rev 457755, elasticsearch/trunk/elasticsearch-keystore at .service)
elasticsearch/repos/community-x86_64/elasticsearch-sysctl.conf
(from rev 457755, elasticsearch/trunk/elasticsearch-sysctl.conf)
elasticsearch/repos/community-x86_64/elasticsearch-tmpfile.conf
(from rev 457755, elasticsearch/trunk/elasticsearch-tmpfile.conf)
elasticsearch/repos/community-x86_64/elasticsearch-user.conf
(from rev 457755, elasticsearch/trunk/elasticsearch-user.conf)
elasticsearch/repos/community-x86_64/elasticsearch.default
(from rev 457755, elasticsearch/trunk/elasticsearch.default)
elasticsearch/repos/community-x86_64/elasticsearch.service
(from rev 457755, elasticsearch/trunk/elasticsearch.service)
elasticsearch/repos/community-x86_64/elasticsearch at .service
(from rev 457755, elasticsearch/trunk/elasticsearch at .service)
Deleted:
elasticsearch/repos/community-x86_64/PKGBUILD
elasticsearch/repos/community-x86_64/elasticsearch-env
elasticsearch/repos/community-x86_64/elasticsearch-keystore.service
elasticsearch/repos/community-x86_64/elasticsearch-keystore at .service
elasticsearch/repos/community-x86_64/elasticsearch-sysctl.conf
elasticsearch/repos/community-x86_64/elasticsearch-tmpfile.conf
elasticsearch/repos/community-x86_64/elasticsearch-user.conf
elasticsearch/repos/community-x86_64/elasticsearch.default
elasticsearch/repos/community-x86_64/elasticsearch.service
elasticsearch/repos/community-x86_64/elasticsearch at .service
---------------------------------+
PKGBUILD | 170 +++++++++++++++++++-------------------
elasticsearch-env | 122 +++++++++++++--------------
elasticsearch-keystore.service | 20 ++--
elasticsearch-keystore at .service | 22 ++--
elasticsearch-sysctl.conf | 2
elasticsearch-tmpfile.conf | 12 +-
elasticsearch-user.conf | 2
elasticsearch.default | 26 ++---
elasticsearch.service | 80 ++++++++---------
elasticsearch at .service | 80 ++++++++---------
10 files changed, 268 insertions(+), 268 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2019-05-02 16:32:43 UTC (rev 457755)
+++ PKGBUILD 2019-05-02 16:33:07 UTC (rev 457756)
@@ -1,85 +0,0 @@
-# Maintainer: Massimiliano Torromeo <massimiliano.torromeo at gmail.com>
-# Contributor: Marcello "mererghost" Rocha <https://github.com/mereghost>
-# Refactored by Blaž "Speed" Hrastnik <https://github.com/archSeer>
-
-pkgname=elasticsearch
-pkgver=7.0.0
-pkgrel=1
-pkgdesc="Distributed RESTful search engine built on top of Lucene"
-arch=('x86_64')
-url="https://www.elastic.co/products/elasticsearch"
-license=('Apache')
-depends=('java-runtime-headless' 'systemd')
-source=(
- "https://artifacts.elastic.co/downloads/$pkgname/$pkgname-oss-$pkgver-linux-x86_64.tar.gz"
- elasticsearch-env
- elasticsearch.service
- elasticsearch at .service
- elasticsearch-keystore.service
- elasticsearch-keystore at .service
- elasticsearch-sysctl.conf
- elasticsearch-user.conf
- elasticsearch-tmpfile.conf
- elasticsearch.default
-)
-sha256sums=('c81751ba0b033581dba7eed6081de736e106fff7f3c0b12754c8711d6a6f2ccb'
- 'ff530bf9440364955e9f38b5c5cc0782da1b1ac1c54870b162b7ded81e56eebc'
- 'de3842935b6ef9cb8a05dc18334112f534dccc2292e36052df942a92de7e66db'
- '13090c1d23ae0a21bf6f0f1d1da795d38972f1674b20c3d2d32f54311aa99094'
- 'bac40d87acaa5bee209ceb6dfa253009a072e9243fe3b94be42fb5cd44727d6f'
- '22a78a165a810608188faea6f2b0b381f27b1e9d60126c3b3e729124540589a8'
- 'b3feb1e9c7e7ce6b33cea6c727728ed700332aae942ca475c3bcc1d56b9f113c'
- '815f6a39db6f54bb40750c382ffbdc298d2c4c187ee8ea7e2f855923e2ff354b'
- '3173e3efa429507e6329f518699a072dfd442d9b5da7c62452a55f82334dd2b5'
- 'bb74e5fb8bc28f2125e015395ab05bea117b72bfc6dadbca827694b362ee0bf8')
-
-backup=('etc/elasticsearch/elasticsearch.yml'
- 'etc/elasticsearch/log4j2.properties'
- 'etc/elasticsearch/jvm.options'
- 'etc/default/elasticsearch')
-
-prepare() {
- cd "$srcdir"/$pkgname-$pkgver
-
- find bin -type f \( -name \*.bat -o -name \*.exe \) -delete
- find bin -type f \( -name \*.jar -o -name \*-env \) -exec chmod a-x {} +
- find bin -type f ! -name \*.jar -exec \
- sed -r 's;source .*/(.*)-env;source /usr/share/elasticsearch/\1-env;' -i {} +
- find bin -type f -name "elasticsearch-*" ! -name elasticsearch-bin -exec \
- sed 's/`dirname "$0"`/$(dirname "$(realpath "$0")")/' -i {} +
-}
-
-package() {
- cd "$pkgdir"
- install -dm750 etc/elasticsearch{,/scripts}
- install -dm755 {usr/share,var/lib,var/log}/elasticsearch
- install -dm755 usr/bin
-
- cd "$srcdir"/$pkgname-$pkgver
- cp -R bin lib modules plugins "$pkgdir"/usr/share/elasticsearch/
-
- cd config
- for conf in *; do
- install -Dm644 "$conf" "$pkgdir/etc/elasticsearch/$conf"
- done
-
- cd ..
- mv bin/elasticsearch-env .
- find bin/ -type f -name elasticsearch-\* ! -name elasticsearch-cli -exec \
- ln -s ../share/elasticsearch/{} "$pkgdir"/usr/{} \;
-
- cd "$pkgdir"/usr/share/elasticsearch
- ln -s ../../../var/log/elasticsearch logs
- ln -s ../../../var/lib/elasticsearch data
-
- cd "$pkgdir"
- install -Dm644 "$srcdir"/elasticsearch-env usr/share/elasticsearch/elasticsearch-env
- install -Dm644 "$srcdir"/elasticsearch.service usr/lib/systemd/system/elasticsearch.service
- install -Dm644 "$srcdir"/elasticsearch at .service usr/lib/systemd/system/elasticsearch at .service
- install -Dm644 "$srcdir"/elasticsearch-keystore.service usr/lib/systemd/system/elasticsearch-keystore.service
- install -Dm644 "$srcdir"/elasticsearch-keystore at .service usr/lib/systemd/system/elasticsearch-keystore at .service
- install -Dm644 "$srcdir"/elasticsearch-user.conf usr/lib/sysusers.d/elasticsearch.conf
- install -Dm644 "$srcdir"/elasticsearch-tmpfile.conf usr/lib/tmpfiles.d/elasticsearch.conf
- install -Dm644 "$srcdir"/elasticsearch-sysctl.conf usr/lib/sysctl.d/elasticsearch.conf
- install -Dm644 "$srcdir"/elasticsearch.default etc/default/elasticsearch
-}
Copied: elasticsearch/repos/community-x86_64/PKGBUILD (from rev 457755, elasticsearch/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2019-05-02 16:33:07 UTC (rev 457756)
@@ -0,0 +1,85 @@
+# Maintainer: Massimiliano Torromeo <massimiliano.torromeo at gmail.com>
+# Contributor: Marcello "mererghost" Rocha <https://github.com/mereghost>
+# Refactored by Blaž "Speed" Hrastnik <https://github.com/archSeer>
+
+pkgname=elasticsearch
+pkgver=7.0.1
+pkgrel=1
+pkgdesc="Distributed RESTful search engine built on top of Lucene"
+arch=('x86_64')
+url="https://www.elastic.co/products/elasticsearch"
+license=('Apache')
+depends=('java-runtime-headless' 'systemd')
+source=(
+ "https://artifacts.elastic.co/downloads/$pkgname/$pkgname-oss-$pkgver-linux-x86_64.tar.gz"
+ elasticsearch-env
+ elasticsearch.service
+ elasticsearch at .service
+ elasticsearch-keystore.service
+ elasticsearch-keystore at .service
+ elasticsearch-sysctl.conf
+ elasticsearch-user.conf
+ elasticsearch-tmpfile.conf
+ elasticsearch.default
+)
+sha256sums=('2034b7c1d87638d4c0c207f228531fb8938c0a4b76bbaf085154b22e2217e25d'
+ 'ff530bf9440364955e9f38b5c5cc0782da1b1ac1c54870b162b7ded81e56eebc'
+ 'de3842935b6ef9cb8a05dc18334112f534dccc2292e36052df942a92de7e66db'
+ '13090c1d23ae0a21bf6f0f1d1da795d38972f1674b20c3d2d32f54311aa99094'
+ 'bac40d87acaa5bee209ceb6dfa253009a072e9243fe3b94be42fb5cd44727d6f'
+ '22a78a165a810608188faea6f2b0b381f27b1e9d60126c3b3e729124540589a8'
+ 'b3feb1e9c7e7ce6b33cea6c727728ed700332aae942ca475c3bcc1d56b9f113c'
+ '815f6a39db6f54bb40750c382ffbdc298d2c4c187ee8ea7e2f855923e2ff354b'
+ '3173e3efa429507e6329f518699a072dfd442d9b5da7c62452a55f82334dd2b5'
+ 'bb74e5fb8bc28f2125e015395ab05bea117b72bfc6dadbca827694b362ee0bf8')
+
+backup=('etc/elasticsearch/elasticsearch.yml'
+ 'etc/elasticsearch/log4j2.properties'
+ 'etc/elasticsearch/jvm.options'
+ 'etc/default/elasticsearch')
+
+prepare() {
+ cd "$srcdir"/$pkgname-$pkgver
+
+ find bin -type f \( -name \*.bat -o -name \*.exe \) -delete
+ find bin -type f \( -name \*.jar -o -name \*-env \) -exec chmod a-x {} +
+ find bin -type f ! -name \*.jar -exec \
+ sed -r 's;source .*/(.*)-env;source /usr/share/elasticsearch/\1-env;' -i {} +
+ find bin -type f -name "elasticsearch-*" ! -name elasticsearch-bin -exec \
+ sed 's/`dirname "$0"`/$(dirname "$(realpath "$0")")/' -i {} +
+}
+
+package() {
+ cd "$pkgdir"
+ install -dm750 etc/elasticsearch{,/scripts}
+ install -dm755 {usr/share,var/lib,var/log}/elasticsearch
+ install -dm755 usr/bin
+
+ cd "$srcdir"/$pkgname-$pkgver
+ cp -R bin lib modules plugins "$pkgdir"/usr/share/elasticsearch/
+
+ cd config
+ for conf in *; do
+ install -Dm644 "$conf" "$pkgdir/etc/elasticsearch/$conf"
+ done
+
+ cd ..
+ mv bin/elasticsearch-env .
+ find bin/ -type f -name elasticsearch-\* ! -name elasticsearch-cli -exec \
+ ln -s ../share/elasticsearch/{} "$pkgdir"/usr/{} \;
+
+ cd "$pkgdir"/usr/share/elasticsearch
+ ln -s ../../../var/log/elasticsearch logs
+ ln -s ../../../var/lib/elasticsearch data
+
+ cd "$pkgdir"
+ install -Dm644 "$srcdir"/elasticsearch-env usr/share/elasticsearch/elasticsearch-env
+ install -Dm644 "$srcdir"/elasticsearch.service usr/lib/systemd/system/elasticsearch.service
+ install -Dm644 "$srcdir"/elasticsearch at .service usr/lib/systemd/system/elasticsearch at .service
+ install -Dm644 "$srcdir"/elasticsearch-keystore.service usr/lib/systemd/system/elasticsearch-keystore.service
+ install -Dm644 "$srcdir"/elasticsearch-keystore at .service usr/lib/systemd/system/elasticsearch-keystore at .service
+ install -Dm644 "$srcdir"/elasticsearch-user.conf usr/lib/sysusers.d/elasticsearch.conf
+ install -Dm644 "$srcdir"/elasticsearch-tmpfile.conf usr/lib/tmpfiles.d/elasticsearch.conf
+ install -Dm644 "$srcdir"/elasticsearch-sysctl.conf usr/lib/sysctl.d/elasticsearch.conf
+ install -Dm644 "$srcdir"/elasticsearch.default etc/default/elasticsearch
+}
Deleted: elasticsearch-env
===================================================================
--- elasticsearch-env 2019-05-02 16:32:43 UTC (rev 457755)
+++ elasticsearch-env 2019-05-02 16:33:07 UTC (rev 457756)
@@ -1,61 +0,0 @@
-#!/bin/bash
-
-set -e -o pipefail
-
-JAVA_HOME=${JAVA_HOME:-/usr/lib/jvm/default-runtime}
-ES_HOME=/usr/share/elasticsearch
-
-# now set the classpath
-ES_CLASSPATH="$ES_HOME/lib/*"
-
-# now set the path to java
-if [ ! -z "$JAVA_HOME" ]; then
- JAVA="$JAVA_HOME/bin/java"
-else
- if [ "$(uname -s)" = "Darwin" ]; then
- # OSX has a different structure
- JAVA="$ES_HOME/jdk/Contents/Home/bin/java"
- else
- JAVA="$ES_HOME/jdk/bin/java"
- fi
-fi
-
-if [ ! -x "$JAVA" ]; then
- echo "could not find java in JAVA_HOME or bundled at $JAVA" >&2
- exit 1
-fi
-
-# do not let JAVA_TOOL_OPTIONS slip in (as the JVM does by default)
-if [ ! -z "$JAVA_TOOL_OPTIONS" ]; then
- echo "warning: ignoring JAVA_TOOL_OPTIONS=$JAVA_TOOL_OPTIONS"
- unset JAVA_TOOL_OPTIONS
-fi
-
-# JAVA_OPTS is not a built-in JVM mechanism but some people think it is so we
-# warn them that we are not observing the value of $JAVA_OPTS
-if [ ! -z "$JAVA_OPTS" ]; then
- echo -n "warning: ignoring JAVA_OPTS=$JAVA_OPTS; "
- echo "pass JVM parameters via ES_JAVA_OPTS"
-fi
-
-# check the Java version
-"$JAVA" -cp "$ES_CLASSPATH" org.elasticsearch.tools.java_version_checker.JavaVersionChecker
-
-export HOSTNAME=$HOSTNAME
-
-if [ -z "$ES_PATH_CONF" ]; then
- ES_PATH_CONF=/etc/elasticsearch
-fi
-
-# now make ES_PATH_CONF absolute
-ES_PATH_CONF=`cd "$ES_PATH_CONF"; pwd`
-
-ES_DISTRIBUTION_FLAVOR=default
-ES_DISTRIBUTION_TYPE=tar
-ES_BUNDLED_JDK=false
-
-if [ -z "$ES_TMPDIR" ]; then
- ES_TMPDIR=`"$JAVA" -cp "$ES_CLASSPATH" org.elasticsearch.tools.launchers.TempDirectory`
-fi
-
-cd "$ES_HOME"
Copied: elasticsearch/repos/community-x86_64/elasticsearch-env (from rev 457755, elasticsearch/trunk/elasticsearch-env)
===================================================================
--- elasticsearch-env (rev 0)
+++ elasticsearch-env 2019-05-02 16:33:07 UTC (rev 457756)
@@ -0,0 +1,61 @@
+#!/bin/bash
+
+set -e -o pipefail
+
+JAVA_HOME=${JAVA_HOME:-/usr/lib/jvm/default-runtime}
+ES_HOME=/usr/share/elasticsearch
+
+# now set the classpath
+ES_CLASSPATH="$ES_HOME/lib/*"
+
+# now set the path to java
+if [ ! -z "$JAVA_HOME" ]; then
+ JAVA="$JAVA_HOME/bin/java"
+else
+ if [ "$(uname -s)" = "Darwin" ]; then
+ # OSX has a different structure
+ JAVA="$ES_HOME/jdk/Contents/Home/bin/java"
+ else
+ JAVA="$ES_HOME/jdk/bin/java"
+ fi
+fi
+
+if [ ! -x "$JAVA" ]; then
+ echo "could not find java in JAVA_HOME or bundled at $JAVA" >&2
+ exit 1
+fi
+
+# do not let JAVA_TOOL_OPTIONS slip in (as the JVM does by default)
+if [ ! -z "$JAVA_TOOL_OPTIONS" ]; then
+ echo "warning: ignoring JAVA_TOOL_OPTIONS=$JAVA_TOOL_OPTIONS"
+ unset JAVA_TOOL_OPTIONS
+fi
+
+# JAVA_OPTS is not a built-in JVM mechanism but some people think it is so we
+# warn them that we are not observing the value of $JAVA_OPTS
+if [ ! -z "$JAVA_OPTS" ]; then
+ echo -n "warning: ignoring JAVA_OPTS=$JAVA_OPTS; "
+ echo "pass JVM parameters via ES_JAVA_OPTS"
+fi
+
+# check the Java version
+"$JAVA" -cp "$ES_CLASSPATH" org.elasticsearch.tools.java_version_checker.JavaVersionChecker
+
+export HOSTNAME=$HOSTNAME
+
+if [ -z "$ES_PATH_CONF" ]; then
+ ES_PATH_CONF=/etc/elasticsearch
+fi
+
+# now make ES_PATH_CONF absolute
+ES_PATH_CONF=`cd "$ES_PATH_CONF"; pwd`
+
+ES_DISTRIBUTION_FLAVOR=default
+ES_DISTRIBUTION_TYPE=tar
+ES_BUNDLED_JDK=false
+
+if [ -z "$ES_TMPDIR" ]; then
+ ES_TMPDIR=`"$JAVA" -cp "$ES_CLASSPATH" org.elasticsearch.tools.launchers.TempDirectory`
+fi
+
+cd "$ES_HOME"
Deleted: elasticsearch-keystore.service
===================================================================
--- elasticsearch-keystore.service 2019-05-02 16:32:43 UTC (rev 457755)
+++ elasticsearch-keystore.service 2019-05-02 16:33:07 UTC (rev 457756)
@@ -1,10 +0,0 @@
-[Unit]
-Description=Elasticsearch Keystore Generation
-ConditionPathExists=|!/etc/elasticsearch/elasticsearch.keystore
-
-[Service]
-Type=oneshot
-Group=elasticsearch
-UMask=0007
-ExecStart=/usr/share/elasticsearch/bin/elasticsearch-keystore create
-RemainAfterExit=yes
Copied: elasticsearch/repos/community-x86_64/elasticsearch-keystore.service (from rev 457755, elasticsearch/trunk/elasticsearch-keystore.service)
===================================================================
--- elasticsearch-keystore.service (rev 0)
+++ elasticsearch-keystore.service 2019-05-02 16:33:07 UTC (rev 457756)
@@ -0,0 +1,10 @@
+[Unit]
+Description=Elasticsearch Keystore Generation
+ConditionPathExists=|!/etc/elasticsearch/elasticsearch.keystore
+
+[Service]
+Type=oneshot
+Group=elasticsearch
+UMask=0007
+ExecStart=/usr/share/elasticsearch/bin/elasticsearch-keystore create
+RemainAfterExit=yes
Deleted: elasticsearch-keystore at .service
===================================================================
--- elasticsearch-keystore at .service 2019-05-02 16:32:43 UTC (rev 457755)
+++ elasticsearch-keystore at .service 2019-05-02 16:33:07 UTC (rev 457756)
@@ -1,11 +0,0 @@
-[Unit]
-Description=Elasticsearch Keystore Generation
-ConditionPathExists=|!/etc/elasticsearch/%I/elasticsearch.keystore
-
-[Service]
-Type=oneshot
-Group=elasticsearch
-UMask=0007
-Environment=ES_PATH_CONF=/etc/elasticsearch/%I
-ExecStart=/usr/share/elasticsearch/bin/elasticsearch-keystore create
-RemainAfterExit=yes
Copied: elasticsearch/repos/community-x86_64/elasticsearch-keystore at .service (from rev 457755, elasticsearch/trunk/elasticsearch-keystore at .service)
===================================================================
--- elasticsearch-keystore at .service (rev 0)
+++ elasticsearch-keystore at .service 2019-05-02 16:33:07 UTC (rev 457756)
@@ -0,0 +1,11 @@
+[Unit]
+Description=Elasticsearch Keystore Generation
+ConditionPathExists=|!/etc/elasticsearch/%I/elasticsearch.keystore
+
+[Service]
+Type=oneshot
+Group=elasticsearch
+UMask=0007
+Environment=ES_PATH_CONF=/etc/elasticsearch/%I
+ExecStart=/usr/share/elasticsearch/bin/elasticsearch-keystore create
+RemainAfterExit=yes
Deleted: elasticsearch-sysctl.conf
===================================================================
--- elasticsearch-sysctl.conf 2019-05-02 16:32:43 UTC (rev 457755)
+++ elasticsearch-sysctl.conf 2019-05-02 16:33:07 UTC (rev 457756)
@@ -1 +0,0 @@
-vm.max_map_count=262144
\ No newline at end of file
Copied: elasticsearch/repos/community-x86_64/elasticsearch-sysctl.conf (from rev 457755, elasticsearch/trunk/elasticsearch-sysctl.conf)
===================================================================
--- elasticsearch-sysctl.conf (rev 0)
+++ elasticsearch-sysctl.conf 2019-05-02 16:33:07 UTC (rev 457756)
@@ -0,0 +1 @@
+vm.max_map_count=262144
\ No newline at end of file
Deleted: elasticsearch-tmpfile.conf
===================================================================
--- elasticsearch-tmpfile.conf 2019-05-02 16:32:43 UTC (rev 457755)
+++ elasticsearch-tmpfile.conf 2019-05-02 16:33:07 UTC (rev 457756)
@@ -1,6 +0,0 @@
-d /var/log/elasticsearch 0755 elasticsearch elasticsearch -
-d /var/lib/elasticsearch 0755 elasticsearch elasticsearch -
-d /usr/share/elasticsearch/plugins 0755 elasticsearch elasticsearch -
-
-d /etc/elasticsearch 0750 - elasticsearch -
-d /etc/elasticsearch/scripts 0750 - elasticsearch -
Copied: elasticsearch/repos/community-x86_64/elasticsearch-tmpfile.conf (from rev 457755, elasticsearch/trunk/elasticsearch-tmpfile.conf)
===================================================================
--- elasticsearch-tmpfile.conf (rev 0)
+++ elasticsearch-tmpfile.conf 2019-05-02 16:33:07 UTC (rev 457756)
@@ -0,0 +1,6 @@
+d /var/log/elasticsearch 0755 elasticsearch elasticsearch -
+d /var/lib/elasticsearch 0755 elasticsearch elasticsearch -
+d /usr/share/elasticsearch/plugins 0755 elasticsearch elasticsearch -
+
+d /etc/elasticsearch 0750 - elasticsearch -
+d /etc/elasticsearch/scripts 0750 - elasticsearch -
Deleted: elasticsearch-user.conf
===================================================================
--- elasticsearch-user.conf 2019-05-02 16:32:43 UTC (rev 457755)
+++ elasticsearch-user.conf 2019-05-02 16:33:07 UTC (rev 457756)
@@ -1 +0,0 @@
-u elasticsearch - "Elasticsearch user"
Copied: elasticsearch/repos/community-x86_64/elasticsearch-user.conf (from rev 457755, elasticsearch/trunk/elasticsearch-user.conf)
===================================================================
--- elasticsearch-user.conf (rev 0)
+++ elasticsearch-user.conf 2019-05-02 16:33:07 UTC (rev 457756)
@@ -0,0 +1 @@
+u elasticsearch - "Elasticsearch user"
Deleted: elasticsearch.default
===================================================================
--- elasticsearch.default 2019-05-02 16:32:43 UTC (rev 457755)
+++ elasticsearch.default 2019-05-02 16:33:07 UTC (rev 457756)
@@ -1,13 +0,0 @@
-JAVA_HOME=/usr/lib/jvm/default-runtime
-
-# Heap Size (defaults to 256m min, 1g max)
-#ES_HEAP_SIZE=1g
-
-# Heap new generation
-#ES_HEAP_NEWSIZE=
-
-# max direct memory
-#ES_DIRECT_SIZE=
-
-# Additional Java OPTS
-#ES_JAVA_OPTS=
Copied: elasticsearch/repos/community-x86_64/elasticsearch.default (from rev 457755, elasticsearch/trunk/elasticsearch.default)
===================================================================
--- elasticsearch.default (rev 0)
+++ elasticsearch.default 2019-05-02 16:33:07 UTC (rev 457756)
@@ -0,0 +1,13 @@
+JAVA_HOME=/usr/lib/jvm/default-runtime
+
+# Heap Size (defaults to 256m min, 1g max)
+#ES_HEAP_SIZE=1g
+
+# Heap new generation
+#ES_HEAP_NEWSIZE=
+
+# max direct memory
+#ES_DIRECT_SIZE=
+
+# Additional Java OPTS
+#ES_JAVA_OPTS=
Deleted: elasticsearch.service
===================================================================
--- elasticsearch.service 2019-05-02 16:32:43 UTC (rev 457755)
+++ elasticsearch.service 2019-05-02 16:33:07 UTC (rev 457756)
@@ -1,40 +0,0 @@
-[Unit]
-Description=Elasticsearch
-Documentation=http://www.elastic.co
-Wants=elasticsearch-keystore.service
-Wants=network.target
-After=elasticsearch-keystore.service
-After=network.target
-
-[Service]
-Type=forking
-RuntimeDirectory=elasticsearch
-PIDFile=/run/elasticsearch/elasticsearch.pid
-
-Environment=JAVA_HOME=/usr/lib/jvm/default-runtime
-EnvironmentFile=-/etc/default/elasticsearch
-Environment=ES_PATH_CONF=/etc/elasticsearch
-Environment=ES_TMPDIR=/tmp
-
-PrivateTmp=true
-WorkingDirectory=/usr/share/elasticsearch
-
-User=elasticsearch
-Group=elasticsearch
-
-ExecStart=/usr/share/elasticsearch/bin/elasticsearch -d \
- -p /run/elasticsearch/elasticsearch.pid
-
-LimitNOFILE=65536
-LimitNPROC=4096
-LimitAS=infinity
-LimitFSIZE=infinity
-
-Restart=on-failure
-KillMode=process
-SendSIGKILL=no
-TimeoutStopSec=0
-SuccessExitStatus=143
-
-[Install]
-WantedBy=multi-user.target
Copied: elasticsearch/repos/community-x86_64/elasticsearch.service (from rev 457755, elasticsearch/trunk/elasticsearch.service)
===================================================================
--- elasticsearch.service (rev 0)
+++ elasticsearch.service 2019-05-02 16:33:07 UTC (rev 457756)
@@ -0,0 +1,40 @@
+[Unit]
+Description=Elasticsearch
+Documentation=http://www.elastic.co
+Wants=elasticsearch-keystore.service
+Wants=network.target
+After=elasticsearch-keystore.service
+After=network.target
+
+[Service]
+Type=forking
+RuntimeDirectory=elasticsearch
+PIDFile=/run/elasticsearch/elasticsearch.pid
+
+Environment=JAVA_HOME=/usr/lib/jvm/default-runtime
+EnvironmentFile=-/etc/default/elasticsearch
+Environment=ES_PATH_CONF=/etc/elasticsearch
+Environment=ES_TMPDIR=/tmp
+
+PrivateTmp=true
+WorkingDirectory=/usr/share/elasticsearch
+
+User=elasticsearch
+Group=elasticsearch
+
+ExecStart=/usr/share/elasticsearch/bin/elasticsearch -d \
+ -p /run/elasticsearch/elasticsearch.pid
+
+LimitNOFILE=65536
+LimitNPROC=4096
+LimitAS=infinity
+LimitFSIZE=infinity
+
+Restart=on-failure
+KillMode=process
+SendSIGKILL=no
+TimeoutStopSec=0
+SuccessExitStatus=143
+
+[Install]
+WantedBy=multi-user.target
Deleted: elasticsearch at .service
===================================================================
--- elasticsearch at .service 2019-05-02 16:32:43 UTC (rev 457755)
+++ elasticsearch at .service 2019-05-02 16:33:07 UTC (rev 457756)
@@ -1,40 +0,0 @@
-[Unit]
-Description=Elasticsearch
-Documentation=http://www.elastic.co
-Wants=elasticsearch-keystore@%I.service
-Wants=network.target
-After=elasticsearch-keystore@%I.service
-After=network.target
-
-[Service]
-Type=forking
-RuntimeDirectory=elasticsearch
-PIDFile=/run/elasticsearch/%I.pid
-
-Environment=JAVA_HOME=/usr/lib/jvm/default-runtime
-EnvironmentFile=-/etc/default/elasticsearch
-Environment=ES_PATH_CONF=/etc/elasticsearch/%I
-Environment=ES_TMPDIR=/tmp
-
-PrivateTmp=true
-WorkingDirectory=/usr/share/elasticsearch
-
-User=elasticsearch
-Group=elasticsearch
-
-ExecStart=/usr/share/elasticsearch/bin/elasticsearch -d \
- -p /run/elasticsearch/%I.pid
-
-LimitNOFILE=65536
-LimitNPROC=4096
-LimitAS=infinity
-LimitFSIZE=infinity
-
-Restart=on-failure
-KillMode=process
-SendSIGKILL=no
-TimeoutStopSec=0
-SuccessExitStatus=143
-
-[Install]
-WantedBy=multi-user.target
Copied: elasticsearch/repos/community-x86_64/elasticsearch at .service (from rev 457755, elasticsearch/trunk/elasticsearch at .service)
===================================================================
--- elasticsearch at .service (rev 0)
+++ elasticsearch at .service 2019-05-02 16:33:07 UTC (rev 457756)
@@ -0,0 +1,40 @@
+[Unit]
+Description=Elasticsearch
+Documentation=http://www.elastic.co
+Wants=elasticsearch-keystore@%I.service
+Wants=network.target
+After=elasticsearch-keystore@%I.service
+After=network.target
+
+[Service]
+Type=forking
+RuntimeDirectory=elasticsearch
+PIDFile=/run/elasticsearch/%I.pid
+
+Environment=JAVA_HOME=/usr/lib/jvm/default-runtime
+EnvironmentFile=-/etc/default/elasticsearch
+Environment=ES_PATH_CONF=/etc/elasticsearch/%I
+Environment=ES_TMPDIR=/tmp
+
+PrivateTmp=true
+WorkingDirectory=/usr/share/elasticsearch
+
+User=elasticsearch
+Group=elasticsearch
+
+ExecStart=/usr/share/elasticsearch/bin/elasticsearch -d \
+ -p /run/elasticsearch/%I.pid
+
+LimitNOFILE=65536
+LimitNPROC=4096
+LimitAS=infinity
+LimitFSIZE=infinity
+
+Restart=on-failure
+KillMode=process
+SendSIGKILL=no
+TimeoutStopSec=0
+SuccessExitStatus=143
+
+[Install]
+WantedBy=multi-user.target
More information about the arch-commits
mailing list