diff options
author | Francesco Colista <francesco.colista@gmail.com> | 2012-10-25 13:50:22 +0000 |
---|---|---|
committer | Francesco Colista <francesco.colista@gmail.com> | 2012-10-25 13:50:22 +0000 |
commit | c1f79a98d7d882957b9bd4a0a6ce5f9e2f497cc0 (patch) | |
tree | 383091305f8b7c4a3544065d0b6f5b28058ee03c /testing/sphinx/sphinx.initd | |
parent | d485a0b7a7259e67b841e8de251432a2d5c5b6b9 (diff) | |
download | aports-c1f79a98d7d882957b9bd4a0a6ce5f9e2f497cc0.tar.bz2 aports-c1f79a98d7d882957b9bd4a0a6ce5f9e2f497cc0.tar.xz |
testing/sphinx: added api and misc script. searchd run as user
Diffstat (limited to 'testing/sphinx/sphinx.initd')
-rw-r--r-- | testing/sphinx/sphinx.initd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/sphinx/sphinx.initd b/testing/sphinx/sphinx.initd index c6799653fd..b5e1d3de36 100644 --- a/testing/sphinx/sphinx.initd +++ b/testing/sphinx/sphinx.initd @@ -21,7 +21,7 @@ start() { checkconfig || return $? ebegin "Starting sphinx searchd" - start-stop-daemon --start --exec /usr/bin/searchd + start-stop-daemon --start -u ${SPHINX_USER} -g ${SPHINX_GROUP} --exec /usr/bin/searchd eend $? "Failed to start sphinx searchd" } |