[arch-commits] Commit in elasticsearch/repos/community-testing-x86_64 (18 files)
Sven-Hendrik Haase
svenstaro at archlinux.org
Mon Jul 20 17:58:03 UTC 2020
Date: Monday, July 20, 2020 @ 17:58:03
Author: svenstaro
Revision: 664642
archrelease: copy trunk to community-testing-x86_64
Added:
elasticsearch/repos/community-testing-x86_64/PKGBUILD
(from rev 664641, elasticsearch/trunk/PKGBUILD)
elasticsearch/repos/community-testing-x86_64/elasticsearch-keystore.service
(from rev 664641, elasticsearch/trunk/elasticsearch-keystore.service)
elasticsearch/repos/community-testing-x86_64/elasticsearch-keystore at .service
(from rev 664641, elasticsearch/trunk/elasticsearch-keystore at .service)
elasticsearch/repos/community-testing-x86_64/elasticsearch-sysctl.conf
(from rev 664641, elasticsearch/trunk/elasticsearch-sysctl.conf)
elasticsearch/repos/community-testing-x86_64/elasticsearch-tmpfile.conf
(from rev 664641, elasticsearch/trunk/elasticsearch-tmpfile.conf)
elasticsearch/repos/community-testing-x86_64/elasticsearch-user.conf
(from rev 664641, elasticsearch/trunk/elasticsearch-user.conf)
elasticsearch/repos/community-testing-x86_64/elasticsearch.default
(from rev 664641, elasticsearch/trunk/elasticsearch.default)
elasticsearch/repos/community-testing-x86_64/elasticsearch.service
(from rev 664641, elasticsearch/trunk/elasticsearch.service)
elasticsearch/repos/community-testing-x86_64/elasticsearch at .service
(from rev 664641, elasticsearch/trunk/elasticsearch at .service)
Deleted:
elasticsearch/repos/community-testing-x86_64/PKGBUILD
elasticsearch/repos/community-testing-x86_64/elasticsearch-keystore.service
elasticsearch/repos/community-testing-x86_64/elasticsearch-keystore at .service
elasticsearch/repos/community-testing-x86_64/elasticsearch-sysctl.conf
elasticsearch/repos/community-testing-x86_64/elasticsearch-tmpfile.conf
elasticsearch/repos/community-testing-x86_64/elasticsearch-user.conf
elasticsearch/repos/community-testing-x86_64/elasticsearch.default
elasticsearch/repos/community-testing-x86_64/elasticsearch.service
elasticsearch/repos/community-testing-x86_64/elasticsearch at .service
---------------------------------+
PKGBUILD | 164 ++++++++++++++++++--------------------
elasticsearch-keystore.service | 20 ++--
elasticsearch-keystore at .service | 22 ++---
elasticsearch-sysctl.conf | 2
elasticsearch-tmpfile.conf | 14 +--
elasticsearch-user.conf | 2
elasticsearch.default | 26 +++---
elasticsearch.service | 132 +++++++++++++++---------------
elasticsearch at .service | 134 +++++++++++++++----------------
9 files changed, 255 insertions(+), 261 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2020-07-20 17:57:44 UTC (rev 664641)
+++ PKGBUILD 2020-07-20 17:58:03 UTC (rev 664642)
@@ -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.8.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' 'libxml2')
-makedepends=('java-environment=11' 'gradle')
-source=(
- $pkgname-$pkgver.tar.gz::"https://github.com/elastic/elasticsearch/archive/v${pkgver}.tar.gz"
- elasticsearch.service
- elasticsearch at .service
- elasticsearch-keystore.service
- elasticsearch-keystore at .service
- elasticsearch-sysctl.conf
- elasticsearch-user.conf
- elasticsearch-tmpfile.conf
- elasticsearch.default
-)
-sha256sums=('6a04dac8da32755f53962a34b85b7dac7593b2a544f5bccb50344b2b345b3944'
- '9e1f68ff275ef2b5f2b93d2823efc5cc9643da696fcbe09a3ea7520ada35ffba'
- '8a76ad9a44a34eca8d6cb7ec9d8f1b01d46c114765b0a76094de8d72f0477351'
- 'bac40d87acaa5bee209ceb6dfa253009a072e9243fe3b94be42fb5cd44727d6f'
- '22a78a165a810608188faea6f2b0b381f27b1e9d60126c3b3e729124540589a8'
- 'b3feb1e9c7e7ce6b33cea6c727728ed700332aae942ca475c3bcc1d56b9f113c'
- '815f6a39db6f54bb40750c382ffbdc298d2c4c187ee8ea7e2f855923e2ff354b'
- '05a73496766a869134cf8a73f2de552bcf9bd1b10a3257e2cbc15f476093c9a6'
- 'bb74e5fb8bc28f2125e015395ab05bea117b72bfc6dadbca827694b362ee0bf8')
-
-backup=('etc/elasticsearch/elasticsearch.yml'
- 'etc/elasticsearch/log4j2.properties'
- 'etc/elasticsearch/jvm.options'
- 'etc/default/elasticsearch')
-
-build() {
- cd $pkgname-$pkgver
- export PATH=/usr/lib/jvm/java-11-openjdk/bin:$PATH
- gradle assemble \
- -x :distribution:docker:buildAarch64DockerImage \
- -x :distribution:docker:buildAarch64OssDockerImage \
- -x :distribution:docker:buildDockerImage \
- -x :distribution:docker:buildOssDockerImage \
- -x :distribution:docker:docker-export:exportDockerImage \
- -x :distribution:docker:oss-docker-export:exportOssDockerImage
-}
-
-package() {
- cd $pkgname-$pkgver
-
- install -dm755 "$pkgdir"/{usr/share,var/lib,var/log}/elasticsearch
- install -dm755 "$pkgdir"/usr/bin
-
- tar xf distribution/archives/linux-tar/build/distributions/elasticsearch-$pkgver-*linux-x86_64.tar.gz \
- --strip 1 -C "$pkgdir"/usr/share/elasticsearch
- rm -rf "$pkgdir"/usr/share/elasticsearch/jdk
-
- install -dm755 "$pkgdir"/etc
- mv "$pkgdir"/usr/share/elasticsearch/config "$pkgdir"/etc/elasticsearch
- chmod 2750 "$pkgdir"/etc/elasticsearch
-
- for bin in "$pkgdir"/usr/share/elasticsearch/bin/*; do
- ln -s /usr/share/elasticsearch/bin/$(basename $bin) "$pkgdir"/usr/bin/$(basename $bin)
- done
-
- ln -s /etc/elasticsearch "$pkgdir"/usr/share/elasticsearch/config
- ln -s /var/log/elasticsearch "$pkgdir"/usr/share/elasticsearch/logs
- ln -s /var/lib/elasticsearch "$pkgdir"/usr/share/elasticsearch/data
-
- install -Dm644 "$srcdir"/elasticsearch.service "$pkgdir"/usr/lib/systemd/system/elasticsearch.service
- install -Dm644 "$srcdir"/elasticsearch at .service "$pkgdir"/usr/lib/systemd/system/elasticsearch at .service
- install -Dm644 "$srcdir"/elasticsearch-keystore.service "$pkgdir"/usr/lib/systemd/system/elasticsearch-keystore.service
- install -Dm644 "$srcdir"/elasticsearch-keystore at .service "$pkgdir"/usr/lib/systemd/system/elasticsearch-keystore at .service
- install -Dm644 "$srcdir"/elasticsearch-user.conf "$pkgdir"/usr/lib/sysusers.d/elasticsearch.conf
- install -Dm644 "$srcdir"/elasticsearch-tmpfile.conf "$pkgdir"/usr/lib/tmpfiles.d/elasticsearch.conf
- install -Dm644 "$srcdir"/elasticsearch-sysctl.conf "$pkgdir"/usr/lib/sysctl.d/elasticsearch.conf
- install -Dm644 "$srcdir"/elasticsearch.default "$pkgdir"/etc/default/elasticsearch
-
- sed -i '2iJAVA_HOME=/usr/lib/jvm/default-runtime' "$pkgdir"/usr/share/elasticsearch/bin/elasticsearch-env
- sed -i 's/ES_BUNDLED_JDK=true/ES_BUNDLED_JDK=false/g' "$pkgdir"/usr/share/elasticsearch/bin/elasticsearch-env
-}
Copied: elasticsearch/repos/community-testing-x86_64/PKGBUILD (from rev 664641, elasticsearch/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2020-07-20 17:58:03 UTC (rev 664642)
@@ -0,0 +1,79 @@
+# 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.8.0
+pkgrel=2
+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' 'libxml2')
+makedepends=('java-environment=11' 'gradle')
+source=(
+ $pkgname-$pkgver.tar.gz::"https://github.com/elastic/elasticsearch/archive/v${pkgver}.tar.gz"
+ elasticsearch.service
+ elasticsearch at .service
+ elasticsearch-keystore.service
+ elasticsearch-keystore at .service
+ elasticsearch-sysctl.conf
+ elasticsearch-user.conf
+ elasticsearch-tmpfile.conf
+ elasticsearch.default
+)
+sha256sums=('6a04dac8da32755f53962a34b85b7dac7593b2a544f5bccb50344b2b345b3944'
+ '10efeee6d4697c1681aeea6bfeba8e04767fd47b4ce3dcd1be28bb7c8a6e12bb'
+ 'bb106baaa3e0a33262a8c6d0b418dc78f8573f7f44e1f1eef9595e8fddaca383'
+ 'bac40d87acaa5bee209ceb6dfa253009a072e9243fe3b94be42fb5cd44727d6f'
+ '22a78a165a810608188faea6f2b0b381f27b1e9d60126c3b3e729124540589a8'
+ 'b3feb1e9c7e7ce6b33cea6c727728ed700332aae942ca475c3bcc1d56b9f113c'
+ '815f6a39db6f54bb40750c382ffbdc298d2c4c187ee8ea7e2f855923e2ff354b'
+ '05a73496766a869134cf8a73f2de552bcf9bd1b10a3257e2cbc15f476093c9a6'
+ 'bb74e5fb8bc28f2125e015395ab05bea117b72bfc6dadbca827694b362ee0bf8')
+
+backup=('etc/elasticsearch/elasticsearch.yml'
+ 'etc/elasticsearch/log4j2.properties'
+ 'etc/elasticsearch/jvm.options'
+ 'etc/default/elasticsearch')
+
+build() {
+ cd $pkgname-$pkgver
+ export PATH=/usr/lib/jvm/java-11-openjdk/bin:$PATH
+ gradle :distribution:archives:linux-tar:build
+}
+
+package() {
+ cd $pkgname-$pkgver
+
+ install -dm755 "$pkgdir"/{usr/share,var/lib,var/log}/elasticsearch
+ install -dm755 "$pkgdir"/usr/bin
+
+ tar xf distribution/archives/linux-tar/build/distributions/elasticsearch-$pkgver-*linux-x86_64.tar.gz \
+ --strip 1 -C "$pkgdir"/usr/share/elasticsearch
+ rm -rf "$pkgdir"/usr/share/elasticsearch/jdk
+
+ install -dm755 "$pkgdir"/etc
+ mv "$pkgdir"/usr/share/elasticsearch/config "$pkgdir"/etc/elasticsearch
+ chmod 2750 "$pkgdir"/etc/elasticsearch
+
+ for bin in "$pkgdir"/usr/share/elasticsearch/bin/*; do
+ ln -s /usr/share/elasticsearch/bin/$(basename $bin) "$pkgdir"/usr/bin/$(basename $bin)
+ done
+
+ ln -s /etc/elasticsearch "$pkgdir"/usr/share/elasticsearch/config
+ ln -s /var/log/elasticsearch "$pkgdir"/usr/share/elasticsearch/logs
+ ln -s /var/lib/elasticsearch "$pkgdir"/usr/share/elasticsearch/data
+
+ install -Dm644 "$srcdir"/elasticsearch.service "$pkgdir"/usr/lib/systemd/system/elasticsearch.service
+ install -Dm644 "$srcdir"/elasticsearch at .service "$pkgdir"/usr/lib/systemd/system/elasticsearch at .service
+ install -Dm644 "$srcdir"/elasticsearch-keystore.service "$pkgdir"/usr/lib/systemd/system/elasticsearch-keystore.service
+ install -Dm644 "$srcdir"/elasticsearch-keystore at .service "$pkgdir"/usr/lib/systemd/system/elasticsearch-keystore at .service
+ install -Dm644 "$srcdir"/elasticsearch-user.conf "$pkgdir"/usr/lib/sysusers.d/elasticsearch.conf
+ install -Dm644 "$srcdir"/elasticsearch-tmpfile.conf "$pkgdir"/usr/lib/tmpfiles.d/elasticsearch.conf
+ install -Dm644 "$srcdir"/elasticsearch-sysctl.conf "$pkgdir"/usr/lib/sysctl.d/elasticsearch.conf
+ install -Dm644 "$srcdir"/elasticsearch.default "$pkgdir"/etc/default/elasticsearch
+
+ sed -i '2iJAVA_HOME=/usr/lib/jvm/default-runtime' "$pkgdir"/usr/share/elasticsearch/bin/elasticsearch-env
+ sed -i 's/ES_BUNDLED_JDK=true/ES_BUNDLED_JDK=false/g' "$pkgdir"/usr/share/elasticsearch/bin/elasticsearch-env
+}
Deleted: elasticsearch-keystore.service
===================================================================
--- elasticsearch-keystore.service 2020-07-20 17:57:44 UTC (rev 664641)
+++ elasticsearch-keystore.service 2020-07-20 17:58:03 UTC (rev 664642)
@@ -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-testing-x86_64/elasticsearch-keystore.service (from rev 664641, elasticsearch/trunk/elasticsearch-keystore.service)
===================================================================
--- elasticsearch-keystore.service (rev 0)
+++ elasticsearch-keystore.service 2020-07-20 17:58:03 UTC (rev 664642)
@@ -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 2020-07-20 17:57:44 UTC (rev 664641)
+++ elasticsearch-keystore at .service 2020-07-20 17:58:03 UTC (rev 664642)
@@ -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-testing-x86_64/elasticsearch-keystore at .service (from rev 664641, elasticsearch/trunk/elasticsearch-keystore at .service)
===================================================================
--- elasticsearch-keystore at .service (rev 0)
+++ elasticsearch-keystore at .service 2020-07-20 17:58:03 UTC (rev 664642)
@@ -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 2020-07-20 17:57:44 UTC (rev 664641)
+++ elasticsearch-sysctl.conf 2020-07-20 17:58:03 UTC (rev 664642)
@@ -1 +0,0 @@
-vm.max_map_count=262144
\ No newline at end of file
Copied: elasticsearch/repos/community-testing-x86_64/elasticsearch-sysctl.conf (from rev 664641, elasticsearch/trunk/elasticsearch-sysctl.conf)
===================================================================
--- elasticsearch-sysctl.conf (rev 0)
+++ elasticsearch-sysctl.conf 2020-07-20 17:58:03 UTC (rev 664642)
@@ -0,0 +1 @@
+vm.max_map_count=262144
\ No newline at end of file
Deleted: elasticsearch-tmpfile.conf
===================================================================
--- elasticsearch-tmpfile.conf 2020-07-20 17:57:44 UTC (rev 664641)
+++ elasticsearch-tmpfile.conf 2020-07-20 17:58:03 UTC (rev 664642)
@@ -1,7 +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 2750 - elasticsearch -
-d /etc/elasticsearch/scripts 0750 - elasticsearch -
-d /etc/elasticsearch/jvm.options.d 0750 - elasticsearch -
Copied: elasticsearch/repos/community-testing-x86_64/elasticsearch-tmpfile.conf (from rev 664641, elasticsearch/trunk/elasticsearch-tmpfile.conf)
===================================================================
--- elasticsearch-tmpfile.conf (rev 0)
+++ elasticsearch-tmpfile.conf 2020-07-20 17:58:03 UTC (rev 664642)
@@ -0,0 +1,7 @@
+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 2750 - elasticsearch -
+d /etc/elasticsearch/scripts 0750 - elasticsearch -
+d /etc/elasticsearch/jvm.options.d 0750 - elasticsearch -
Deleted: elasticsearch-user.conf
===================================================================
--- elasticsearch-user.conf 2020-07-20 17:57:44 UTC (rev 664641)
+++ elasticsearch-user.conf 2020-07-20 17:58:03 UTC (rev 664642)
@@ -1 +0,0 @@
-u elasticsearch - "Elasticsearch user"
Copied: elasticsearch/repos/community-testing-x86_64/elasticsearch-user.conf (from rev 664641, elasticsearch/trunk/elasticsearch-user.conf)
===================================================================
--- elasticsearch-user.conf (rev 0)
+++ elasticsearch-user.conf 2020-07-20 17:58:03 UTC (rev 664642)
@@ -0,0 +1 @@
+u elasticsearch - "Elasticsearch user"
Deleted: elasticsearch.default
===================================================================
--- elasticsearch.default 2020-07-20 17:57:44 UTC (rev 664641)
+++ elasticsearch.default 2020-07-20 17:58:03 UTC (rev 664642)
@@ -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-testing-x86_64/elasticsearch.default (from rev 664641, elasticsearch/trunk/elasticsearch.default)
===================================================================
--- elasticsearch.default (rev 0)
+++ elasticsearch.default 2020-07-20 17:58:03 UTC (rev 664642)
@@ -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 2020-07-20 17:57:44 UTC (rev 664641)
+++ elasticsearch.service 2020-07-20 17:58:03 UTC (rev 664642)
@@ -1,66 +0,0 @@
-[Unit]
-Description=Elasticsearch
-Documentation=http://www.elastic.co
-Wants=elasticsearch-keystore.service
-Wants=network-online.target
-After=elasticsearch-keystore.service
-After=network-online.target
-
-[Service]
-Type=notify
-RuntimeDirectory=elasticsearch
-PrivateTmp=true
-Environment=ES_HOME=/usr/share/elasticsearch
-Environment=ES_PATH_CONF=/etc/elasticsearch
-Environment=PID_DIR=/run/elasticsearch
-Environment=ES_SD_NOTIFY=true
-EnvironmentFile=-/etc/default/elasticsearch
-
-WorkingDirectory=/usr/share/elasticsearch
-
-User=elasticsearch
-Group=elasticsearch
-
-PermissionsStartOnly=true
-ExecStartPre=/usr/share/elasticsearch/bin/elasticsearch-keystore upgrade
-
-ExecStart=/usr/share/elasticsearch/bin/elasticsearch -p ${PID_DIR}/elasticsearch.pid
-
-# StandardOutput is configured to redirect to journalctl since
-# some error messages may be logged in standard output before
-# elasticsearch logging system is initialized. Elasticsearch
-# stores its logs in /var/log/elasticsearch and does not use
-# journalctl by default. If you also want to enable journalctl
-# logging, you can simply remove the "quiet" option from ExecStart.
-StandardOutput=journal
-StandardError=inherit
-
-# Specifies the maximum file descriptor number that can be opened by this process
-LimitNOFILE=65535
-
-# Specifies the maximum number of processes
-LimitNPROC=4096
-
-# Specifies the maximum size of virtual memory
-LimitAS=infinity
-
-# Specifies the maximum file size
-LimitFSIZE=infinity
-
-# Disable timeout logic and wait until process is stopped
-TimeoutStopSec=0
-
-# SIGTERM signal is used to stop the Java process
-KillSignal=SIGTERM
-
-# Send the signal only to the JVM rather than its control group
-KillMode=process
-
-# Java process is never killed
-SendSIGKILL=no
-
-# When a JVM receives a SIGTERM signal it exits with code 143
-SuccessExitStatus=143
-
-[Install]
-WantedBy=multi-user.target
Copied: elasticsearch/repos/community-testing-x86_64/elasticsearch.service (from rev 664641, elasticsearch/trunk/elasticsearch.service)
===================================================================
--- elasticsearch.service (rev 0)
+++ elasticsearch.service 2020-07-20 17:58:03 UTC (rev 664642)
@@ -0,0 +1,66 @@
+[Unit]
+Description=Elasticsearch
+Documentation=http://www.elastic.co
+Wants=elasticsearch-keystore.service
+Wants=network-online.target
+After=elasticsearch-keystore.service
+After=network-online.target
+
+[Service]
+Type=simple
+RuntimeDirectory=elasticsearch
+PrivateTmp=true
+Environment=ES_HOME=/usr/share/elasticsearch
+Environment=ES_PATH_CONF=/etc/elasticsearch
+Environment=PID_DIR=/run/elasticsearch
+Environment=ES_SD_NOTIFY=true
+EnvironmentFile=-/etc/default/elasticsearch
+
+WorkingDirectory=/usr/share/elasticsearch
+
+User=elasticsearch
+Group=elasticsearch
+
+PermissionsStartOnly=true
+ExecStartPre=/usr/share/elasticsearch/bin/elasticsearch-keystore upgrade
+
+ExecStart=/usr/share/elasticsearch/bin/elasticsearch -p ${PID_DIR}/elasticsearch.pid
+
+# StandardOutput is configured to redirect to journalctl since
+# some error messages may be logged in standard output before
+# elasticsearch logging system is initialized. Elasticsearch
+# stores its logs in /var/log/elasticsearch and does not use
+# journalctl by default. If you also want to enable journalctl
+# logging, you can simply remove the "quiet" option from ExecStart.
+StandardOutput=journal
+StandardError=inherit
+
+# Specifies the maximum file descriptor number that can be opened by this process
+LimitNOFILE=65535
+
+# Specifies the maximum number of processes
+LimitNPROC=4096
+
+# Specifies the maximum size of virtual memory
+LimitAS=infinity
+
+# Specifies the maximum file size
+LimitFSIZE=infinity
+
+# Disable timeout logic and wait until process is stopped
+TimeoutStopSec=0
+
+# SIGTERM signal is used to stop the Java process
+KillSignal=SIGTERM
+
+# Send the signal only to the JVM rather than its control group
+KillMode=process
+
+# Java process is never killed
+SendSIGKILL=no
+
+# When a JVM receives a SIGTERM signal it exits with code 143
+SuccessExitStatus=143
+
+[Install]
+WantedBy=multi-user.target
Deleted: elasticsearch at .service
===================================================================
--- elasticsearch at .service 2020-07-20 17:57:44 UTC (rev 664641)
+++ elasticsearch at .service 2020-07-20 17:58:03 UTC (rev 664642)
@@ -1,67 +0,0 @@
-[Unit]
-Description=Elasticsearch %I
-Documentation=http://www.elastic.co
-Wants=elasticsearch-keystore@%i.service
-Wants=network-online.target
-After=elasticsearch-keystore@%i.service
-After=network-online.target
-
-[Service]
-Type=notify
-RuntimeDirectory=elasticsearch
-PrivateTmp=true
-Environment=ES_HOME=/usr/share/elasticsearch
-Environment=ES_PATH_CONF=/etc/elasticsearch/%I
-Environment=PID_DIR=/run/elasticsearch
-Environment=ES_SD_NOTIFY=true
-EnvironmentFile=-/etc/default/elasticsearch
-PIDFile=/run/elasticsearch/%I.pid
-
-WorkingDirectory=/usr/share/elasticsearch
-
-User=elasticsearch
-Group=elasticsearch
-
-PermissionsStartOnly=true
-ExecStartPre=/usr/share/elasticsearch/bin/elasticsearch-keystore upgrade
-
-ExecStart=/usr/share/elasticsearch/bin/elasticsearch -p ${PID_DIR}/%I.pid
-
-# StandardOutput is configured to redirect to journalctl since
-# some error messages may be logged in standard output before
-# elasticsearch logging system is initialized. Elasticsearch
-# stores its logs in /var/log/elasticsearch and does not use
-# journalctl by default. If you also want to enable journalctl
-# logging, you can simply remove the "quiet" option from ExecStart.
-StandardOutput=journal
-StandardError=inherit
-
-# Specifies the maximum file descriptor number that can be opened by this process
-LimitNOFILE=65535
-
-# Specifies the maximum number of processes
-LimitNPROC=4096
-
-# Specifies the maximum size of virtual memory
-LimitAS=infinity
-
-# Specifies the maximum file size
-LimitFSIZE=infinity
-
-# Disable timeout logic and wait until process is stopped
-TimeoutStopSec=0
-
-# SIGTERM signal is used to stop the Java process
-KillSignal=SIGTERM
-
-# Send the signal only to the JVM rather than its control group
-KillMode=process
-
-# Java process is never killed
-SendSIGKILL=no
-
-# When a JVM receives a SIGTERM signal it exits with code 143
-SuccessExitStatus=143
-
-[Install]
-WantedBy=multi-user.target
Copied: elasticsearch/repos/community-testing-x86_64/elasticsearch at .service (from rev 664641, elasticsearch/trunk/elasticsearch at .service)
===================================================================
--- elasticsearch at .service (rev 0)
+++ elasticsearch at .service 2020-07-20 17:58:03 UTC (rev 664642)
@@ -0,0 +1,67 @@
+[Unit]
+Description=Elasticsearch %I
+Documentation=http://www.elastic.co
+Wants=elasticsearch-keystore@%i.service
+Wants=network-online.target
+After=elasticsearch-keystore@%i.service
+After=network-online.target
+
+[Service]
+Type=simple
+RuntimeDirectory=elasticsearch
+PrivateTmp=true
+Environment=ES_HOME=/usr/share/elasticsearch
+Environment=ES_PATH_CONF=/etc/elasticsearch/%I
+Environment=PID_DIR=/run/elasticsearch
+Environment=ES_SD_NOTIFY=true
+EnvironmentFile=-/etc/default/elasticsearch
+PIDFile=/run/elasticsearch/%I.pid
+
+WorkingDirectory=/usr/share/elasticsearch
+
+User=elasticsearch
+Group=elasticsearch
+
+PermissionsStartOnly=true
+ExecStartPre=/usr/share/elasticsearch/bin/elasticsearch-keystore upgrade
+
+ExecStart=/usr/share/elasticsearch/bin/elasticsearch -p ${PID_DIR}/%I.pid
+
+# StandardOutput is configured to redirect to journalctl since
+# some error messages may be logged in standard output before
+# elasticsearch logging system is initialized. Elasticsearch
+# stores its logs in /var/log/elasticsearch and does not use
+# journalctl by default. If you also want to enable journalctl
+# logging, you can simply remove the "quiet" option from ExecStart.
+StandardOutput=journal
+StandardError=inherit
+
+# Specifies the maximum file descriptor number that can be opened by this process
+LimitNOFILE=65535
+
+# Specifies the maximum number of processes
+LimitNPROC=4096
+
+# Specifies the maximum size of virtual memory
+LimitAS=infinity
+
+# Specifies the maximum file size
+LimitFSIZE=infinity
+
+# Disable timeout logic and wait until process is stopped
+TimeoutStopSec=0
+
+# SIGTERM signal is used to stop the Java process
+KillSignal=SIGTERM
+
+# Send the signal only to the JVM rather than its control group
+KillMode=process
+
+# Java process is never killed
+SendSIGKILL=no
+
+# When a JVM receives a SIGTERM signal it exits with code 143
+SuccessExitStatus=143
+
+[Install]
+WantedBy=multi-user.target
More information about the arch-commits
mailing list