We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81ec0e9 commit 43d6d1aCopy full SHA for 43d6d1a
sphinx-reindex.sh
@@ -3,7 +3,8 @@
3
exec &> >(tee -a "/var/log/sphinxsearch/sphinx-reindex.log")
4
5
set -e
6
-echo "Started: "`date "+%Y%m%d %H%M%S"`
+START=`date "+%Y%m%d %H%M%S"`
7
+echo "Started: $START"
8
9
# Download sample 100k file if missing
10
if [ ! -f /data/input/data.tsv -a ! -f /data/input/data.tsv.gz ]; then
@@ -30,4 +31,6 @@ if [ -z "`pidof searchd`" ]; then
30
31
supervisorctl -c /etc/supervisor/supervisord.conf start sphinx
32
fi
33
34
35
echo "Finished: "`date "+%Y%m%d %H%M%S"`
36
+echo "========"
0 commit comments