Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorBenjamin Saller <bcsaller@objectrealms.net>2007-05-29 02:02:29 (GMT)
committer Benjamin Saller <bcsaller@objectrealms.net>2007-05-29 02:02:29 (GMT)
commitc7e590621a4d5cf6347d2e68ef5935c0f97f701a (patch)
treecb84e9978914769ae3ba2e7c1540bf0715c19bae /bin
parent59c107dfeb01f4360f7ea4eea8feaa1b57033da3 (diff)
tomeu's patch
Diffstat (limited to 'bin')
-rw-r--r--bin/Makefile.am4
-rwxr-xr-xbin/index-service3
2 files changed, 5 insertions, 2 deletions
diff --git a/bin/Makefile.am b/bin/Makefile.am
index fca36d6..37b5679 100644
--- a/bin/Makefile.am
+++ b/bin/Makefile.am
@@ -1,3 +1,5 @@
-bin_SCRIPTS = datastore-service
+bin_SCRIPTS = \
+ datastore-service \
+ index-service
EXTRA_DIST = $(bin_SCRIPTS)
diff --git a/bin/index-service b/bin/index-service
index a5b56b4..3ec0413 100755
--- a/bin/index-service
+++ b/bin/index-service
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
""" Async index service for the Datastore.
@@ -49,6 +49,7 @@ class IndexService(Application):
def main(self):
+ logging.debug('Starting the index service at %s' % self.options.fulltext_dir)
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
bus = dbus.SessionBus()
self.fulltext = Indexer(self.options.fulltext_dir)