diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2010-01-22 04:13:07 +0100 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2010-01-22 04:19:06 +0100 |
commit | 302b4ab1a9ccf94c2e39d770358b6bc1fe888f8a (patch) | |
tree | 3d4e69eecc197c6ea7060f907cee686b78658e01 /www-apps/tt-rss/files | |
parent | 6fa3511f330670c1609fd2dd1b1bba08afba5628 (diff) | |
download | overlay-302b4ab1a9ccf94c2e39d770358b6bc1fe888f8a.tar.gz overlay-302b4ab1a9ccf94c2e39d770358b6bc1fe888f8a.tar.xz overlay-302b4ab1a9ccf94c2e39d770358b6bc1fe888f8a.zip |
fixed small bugs with initscript
Diffstat (limited to 'www-apps/tt-rss/files')
-rwxr-xr-x | www-apps/tt-rss/files/tt-rss.init.d | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www-apps/tt-rss/files/tt-rss.init.d b/www-apps/tt-rss/files/tt-rss.init.d index 6d4a682..3187c14 100755 --- a/www-apps/tt-rss/files/tt-rss.init.d +++ b/www-apps/tt-rss/files/tt-rss.init.d @@ -26,8 +26,8 @@ checkconfig() { start() { ebegin "Starting Tiny Tiny RSS update daemon" - start-stop-daemon --start --pidfile "${PIDFILE}" --chdir "${TTRSS_PATH}" \ - --user ${RUNAS} --exec ${PHP} -- \ + start-stop-daemon --start --quiet --pidfile "${PIDFILE}" --chdir "${TTRSS_PATH}" \ + --user ${RUNAS} --exec ${PHP} --background --make-pidfile -- \ "${TTRSS_PATH}/${DAEMON_SCRIPT}" eend $? |