blob: 494ca6436d2552a03635f97439d0dbd1d0c442a8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
--- bin/build-index.sh.orig 2014-02-14 15:05:38.180621787 +0000
+++ bin/build-index.sh 2014-02-14 15:31:54.580513137 +0000
@@ -1,17 +1,19 @@
-#!/bin/bash
+#!/bin/sh
if [ "$GRAPHITE_ROOT" = "" ]
then
- GRAPHITE_ROOT="/opt/graphite"
+ GRAPHITE_ROOT="%%PREFIX%%/graphite"
fi
if [ "$GRAPHITE_STORAGE_DIR" = "" ]
then
- GRAPHITE_STORAGE_DIR="${GRAPHITE_ROOT}/storage"
+ GRAPHITE_STORAGE_DIR="/var/db/graphite"
fi
-
-WHISPER_DIR="${GRAPHITE_STORAGE_DIR}/whisper"
+if [ "$WHISPER_DIR" = "" ]
+then
+ WHISPER_DIR="/var/db/carbon/whisper/"
+fi
if [ ! -d "$WHISPER_DIR" ]
then
@@ -19,13 +21,17 @@
exit 1
fi
-INDEX_FILE="${GRAPHITE_STORAGE_DIR}/index"
-TMP_INDEX="${GRAPHITE_STORAGE_DIR}/.index.tmp"
+if [ "$INDEX_FILE" = "" ]
+then
+ INDEX_FILE="${GRAPHITE_STORAGE_DIR}/index"
+fi
+
+TMP_INDEX=${INDEX_FILE%%index}.index.tmp
rm -f $TMP_INDEX
cd $WHISPER_DIR
touch $INDEX_FILE
echo "[`date`] building index..."
-find -L . -name '*.wsp' | perl -pe 's!^[^/]+/(.+)\.wsp$!$1!; s!/!.!g' > $TMP_INDEX
+find -L . -name '*.wsp' | sed -E 's!^[^/]+/(.+)\.wsp$!\1!; s!/!.!g' > $TMP_INDEX
echo "[`date`] complete, switching to new index file"
mv -f $TMP_INDEX $INDEX_FILE
|