summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlashbunny2018-07-21 13:18:51 -0400
committerSlashbunny2018-07-21 13:18:51 -0400
commitf0dee8a0c99303e2ffca94a10eb7a92fccc9ff92 (patch)
tree098af9859a3440553802551cdda3d86f613af830
parent0b3eddf188e0bc37aad25cbe4d32e3b5b36adf54 (diff)
downloadaur-f0dee8a0c99303e2ffca94a10eb7a92fccc9ff92.tar.gz
service file should not be executable
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD4
2 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 2ea5918efe86..004cf5d53754 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Sun Jul 15 18:54:53 UTC 2018
+# Sat Jul 21 17:18:44 UTC 2018
pkgbase = alertmanager-bin
pkgdesc = Alertmanager handles alerts sent by client applications such as the Prometheus server. It takes care of deduplicating, grouping, and routing them to the correct receiver integration (binary, not built from source)
pkgver = 0.15.1
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/prometheus/alertmanager
arch = x86_64
license = Apache
diff --git a/PKGBUILD b/PKGBUILD
index 27ff4ed727c5..4ee0b71c7287 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=alertmanager-bin
pkgver=0.15.1
-pkgrel=1
+pkgrel=2
pkgdesc="Alertmanager handles alerts sent by client applications such as the Prometheus server. It takes care of deduplicating, grouping, and routing them to the correct receiver integration (binary, not built from source)"
arch=('x86_64')
url="https://github.com/prometheus/alertmanager"
@@ -32,6 +32,6 @@ package() {
install -d -m0755 "${pkgdir}/etc/alertmanager/template/"
# Install SystemD Service File
- install -D -m0755 "${srcdir}/alertmanager.service" \
+ install -D -m0644 "${srcdir}/alertmanager.service" \
"${pkgdir}/usr/lib/systemd/system/alertmanager.service"
}