Skip to content

Commit bf71aa7

Browse files
committed
timestamp
1 parent 5495073 commit bf71aa7

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

apps/geomaps/default/app.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[install]
66
is_configured = 0
7-
install_source_checksum = 392ca9b5c7340c4ec11efdcc289b77e79a7881a8
7+
install_source_checksum = a24b2226b44b37a4cda763dde05700a0d28e7839
88

99
[ui]
1010
is_visible = 1
@@ -13,6 +13,6 @@ label = Geo Maps
1313
[launcher]
1414
author = D. Dessy
1515
description =
16-
version =
16+
version = 0.0.9
1717

1818
#

apps/geomaps/metadata/local.meta

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ version = 8.2.3
4242
modtime = 1638282675.725145000
4343

4444
[app/install/install_source_checksum]
45-
version = 8.2.3
46-
modtime = 1638280845.388753000
45+
version = 8.2.3.2
46+
modtime = 1639645979.854703000
4747

4848
[nav/default]
4949
version = 8.2.3

get-spl.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ APP=geomaps
33
APP_FILE=${APP}.spl
44
APP_LOCATION=/opt/splunk/share/splunk/app_packages/${APP_FILE}
55
source .env
6-
# Ask Splunk to package app
7-
curl -k -u admin:$SPLUNK_PASSWORD https://localhost:8089/services/apps/local/$APP/package
8-
# Download the app
6+
echo "Asking Splunk to package ${APP_FILE} ..."
7+
curl -s -k -u admin:$SPLUNK_PASSWORD https://localhost:8089/services/apps/local/$APP/package
8+
echo "Downloading ${APP_FILE} ..."
99
docker cp so1:$APP_LOCATION .
10-
# Expand app
11-
tar xvf ${APP_FILE} -C apps/
10+
echo "Expanding ${APP_FILE} ..."
11+
tar -xf ${APP_FILE} -C apps/
12+
echo "Done."

0 commit comments

Comments
 (0)