summaryrefslogtreecommitdiff
path: root/www/tt-rss/files/ttrssd.in
blob: bee6640ef28fe0636eeafeb9a584983a3ca93d19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#! /bin/sh
#
# $FreeBSD$
#

# PROVIDE: ttrssd
# REQUIRE: LOGIN mysql postgresql
# KEYWORD: shutdown

# Add the following line to /etc/rc.conf to enable `ttrssd':
#
#ttrssd_enable="YES"
#

. /etc/rc.subr

name="ttrssd"
rcvar=ttrssd_enable

# read settings, set default values
load_rc_config "${name}"
: ${ttrssd_enable="NO"}

required_files="%%WWWDIR%%/config.php"
pidfile="/var/run/${name}.pid"
phpcli="%%LOCALBASE%%/bin/php"
command_interpreter=$phpcli
long_name="Tiny Tiny RSS updating feeds daemon."
phpupd="update_daemon2.php"
ttrssd_log="/var/log/${name}.log"
ttrssd_user="%%WWWOWN%%"

start_cmd=${name}_start
stop_cmd=${name}_stop

ttrssd_start() {
	[ -x $phpcli ] || (echo "$phpcli not found"; exit 1)
	[ -f $pidfile ] && (echo "$name already running?"; exit 2)
	echo "Starting $long_name"
	(cd %%WWWDIR%% && su -fm $ttrssd_user -c "./$phpupd" > $ttrssd_log &) && \
	echo $$ > $pidfile
}

ttrssd_stop() {
	[ -f $pidfile ] || (echo "$name not running?"; exit 1)
	echo "Stopping $long_name"
	kill `ps ax | grep $phpupd | grep -v grep | awk '{print $1}'`
	rm -f $pidfile
}

run_rc_command "$1"