diff options
author | Tim Biermann <tbier@posteo.de> | 2021-07-24 18:00:48 +0200 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2021-07-25 12:12:54 +0200 |
commit | 64ccc0fafd4aaa329e4f7204c3b63cbb5b09d134 (patch) | |
tree | 8c9c36e03718200733b38e2dd58997599663f623 /influxdb/Pkgfile | |
parent | f50076d1e4aca9294775900f3226c3536816a8c2 (diff) | |
download | contrib-64ccc0fafd4aaa329e4f7204c3b63cbb5b09d134.tar.gz contrib-64ccc0fafd4aaa329e4f7204c3b63cbb5b09d134.tar.xz |
influxdb: 1.8.6 -> 1.8.7
Diffstat (limited to 'influxdb/Pkgfile')
-rw-r--r-- | influxdb/Pkgfile | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/influxdb/Pkgfile b/influxdb/Pkgfile index d972a7185..d6b82d621 100644 --- a/influxdb/Pkgfile +++ b/influxdb/Pkgfile @@ -4,7 +4,7 @@ # Depends on: go name=influxdb -version=1.8.6 +version=1.8.7 release=1 source=(https://github.com/influxdata/influxdb/archive/v$version/$name-$version.tar.gz influxdb.service) @@ -25,13 +25,10 @@ build() { ## and fails when it gets it #make -C man - install -d $PKG/usr/bin/ - install -Dm755 build/influx $PKG/usr/bin/ - install -Dm755 build/influxd $PKG/usr/bin/ - install -Dm755 build/influx_inspect $PKG/usr/bin/ - install -Dm755 build/influx_stress $PKG/usr/bin/ - install -Dm755 build/influx_tools $PKG/usr/bin/ - install -Dm755 build/influx_tsm $PKG/usr/bin/ + # influx_tsm missing + for i in influx influxd influx_inspect influx_stress influx_tools; do + install -Dm755 build/$i $PKG/usr/bin/$i; + done install -Dm644 etc/config.sample.toml $PKG/etc/influxdb/influxdb.conf |