summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlashbunny2017-11-23 02:06:20 -0500
committerSlashbunny2017-11-23 02:06:20 -0500
commitb12a55d737d9ba33043af0f7c9221647f3711a1d (patch)
tree5268e19ef943e374cd54948468d2c01d00b5e5ec
parent502f689bdfc7122e032374d87028152f826d66c5 (diff)
downloadaur-b12a55d737d9ba33043af0f7c9221647f3711a1d.tar.gz
v2 service flag changes
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD2
-rw-r--r--prometheus.service8
3 files changed, 7 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 706c30a8c4d1..4d65e6eb3320 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,5 +1,5 @@
# Generated by mksrcinfo v8
-# Sun Nov 12 18:25:00 UTC 2017
+# Thu Nov 23 07:05:42 UTC 2017
pkgbase = prometheus-bin
pkgdesc = An open-source service monitoring system and time series database (binary, not built from source)
pkgver = 2.0.0
@@ -14,7 +14,7 @@ pkgbase = prometheus-bin
backup = etc/prometheus/prometheus.yml
source = prometheus.service
source = https://github.com/prometheus/prometheus/releases/download/v2.0.0/prometheus-2.0.0.linux-amd64.tar.gz
- sha256sums = 4a021c97178c244b844b659f36fdef4c33c1176aacd9ea570396acf49b398182
+ sha256sums = 0c99b68b282d72feb9fd2bc0b190554659a59dada74ec92ca2b2f48016a9b805
sha256sums = e12917b25b32980daee0e9cf879d9ec197e2893924bd1574604eb0f550034d46
pkgname = prometheus-bin
diff --git a/PKGBUILD b/PKGBUILD
index b68ab73c524f..28109985ea62 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -15,7 +15,7 @@ install='prometheus.install'
backup=('etc/prometheus/prometheus.yml')
source=('prometheus.service'
"https://github.com/prometheus/prometheus/releases/download/v${pkgver}/prometheus-${pkgver}.linux-amd64.tar.gz" )
-sha256sums=('4a021c97178c244b844b659f36fdef4c33c1176aacd9ea570396acf49b398182'
+sha256sums=('0c99b68b282d72feb9fd2bc0b190554659a59dada74ec92ca2b2f48016a9b805'
'e12917b25b32980daee0e9cf879d9ec197e2893924bd1574604eb0f550034d46')
package() {
diff --git a/prometheus.service b/prometheus.service
index 6217c6186bea..37941f272564 100644
--- a/prometheus.service
+++ b/prometheus.service
@@ -6,10 +6,10 @@ After=network.target
User=prometheus
Group=prometheus
ExecStart=/usr/bin/prometheus \
- -config.file "/etc/prometheus/prometheus.yml" \
- -storage.local.path "/var/lib/prometheus" \
- -web.console.libraries "/etc/prometheus/console_libraries" \
- -web.console.templates "/etc/prometheus/consoles"
+ --config.file "/etc/prometheus/prometheus.yml" \
+ --storage.tsdb.path "/var/lib/prometheus" \
+ --web.console.libraries "/etc/prometheus/console_libraries" \
+ --web.console.templates "/etc/prometheus/consoles"
ExecReload=/bin/kill -HUP $MAINPID
[Install]