diff options
Diffstat (limited to 'www/tt-rss/files')
-rw-r--r-- | www/tt-rss/files/config.php.in | 1 | ||||
-rw-r--r-- | www/tt-rss/files/pkg-message.in | 7 | ||||
-rw-r--r-- | www/tt-rss/files/ttrssd.in | 31 |
3 files changed, 0 insertions, 39 deletions
diff --git a/www/tt-rss/files/config.php.in b/www/tt-rss/files/config.php.in index e04d7c59cf53..75cf4aa9c350 100644 --- a/www/tt-rss/files/config.php.in +++ b/www/tt-rss/files/config.php.in @@ -24,7 +24,6 @@ #putenv('TTRSS_SINGLE_USER_MODE=true'); #putenv('TTRSS_SELF_URL_PATH='); - #putenv('TTRSS_DB_TYPE='); #putenv('TTRSS_DB_HOST='); #putenv('TTRSS_DB_USER='); #putenv('TTRSS_DB_NAME='); diff --git a/www/tt-rss/files/pkg-message.in b/www/tt-rss/files/pkg-message.in index a0602b7e0475..34bf547f3560 100644 --- a/www/tt-rss/files/pkg-message.in +++ b/www/tt-rss/files/pkg-message.in @@ -3,13 +3,6 @@ message: <<EOM Tiny Tiny RSS is now installed, but it requires some additional setup. -Install your corresponding php database drivers: - - msyql: mysqli pdo_mysql - pkg install %%MYSQL_DEPS%% - postgresql: pgsql pdo_pgsql - pkg install %%PGSQL_DEPS%% - You now need to create a database, a database user, configure the web server, and configure tt-rss. Sample apache24 configs located at %%DATADIR%%/httpd-tt-rss.conf. diff --git a/www/tt-rss/files/ttrssd.in b/www/tt-rss/files/ttrssd.in index 7934b98a4afc..6fdd8b6ea1f3 100644 --- a/www/tt-rss/files/ttrssd.in +++ b/www/tt-rss/files/ttrssd.in @@ -36,35 +36,4 @@ command_args="-rR 10 -H -u %%WWWOWN%% \ '$initdb_php --update-schema=force-yes; \ $phpupd;'" -stop_cmd="${name}_stop" - -# daemon doesn't process signals if it lacks a child process. -# See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=277959 -ttrssd_stop() { - local pid_daemon - local pid_child - local signal="TERM" - - pid_daemon=$(check_pidfile ${pidfile} ${command}) - pid_child=$(check_pidfile ${cpidfile} ${phpcli}) - - if [ -n "$pid_daemon" ]; then - echo "Stopping ${name}." - - if [ -z "${pid_child}" ]; then - signal="INT" - fi - - kill -"$signal" "${pid_daemon}" - - wait_for_pids "${pid_daemon}" "${pid_child}" - else - if [ -n "$pid_child" ]; then - echo "${name} not running? (check ${cpidfile})." - else - echo "${name} not running? (check ${pidfile})." - fi - fi -} - run_rc_command "$1" |