diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2012-01-02 12:55:33 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2012-01-02 12:55:33 +0000 |
commit | b81c8ad0dc50438ae6f5ef2c0e0d90a3098a1281 (patch) | |
tree | ede822a12f0ee2f36a980d29a4b09889037bce83 /www/tt-rss | |
parent | d4df79224b3ff038e8a1123e33c4df7f1b530999 (diff) | |
download | ports-b81c8ad0dc50438ae6f5ef2c0e0d90a3098a1281.tar.gz ports-b81c8ad0dc50438ae6f5ef2c0e0d90a3098a1281.zip |
Notes
Diffstat (limited to 'www/tt-rss')
-rw-r--r-- | www/tt-rss/Makefile | 1 | ||||
-rw-r--r-- | www/tt-rss/files/ttrssd.in | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/www/tt-rss/Makefile b/www/tt-rss/Makefile index ba2895a05eb8..31b53c14969e 100644 --- a/www/tt-rss/Makefile +++ b/www/tt-rss/Makefile @@ -7,6 +7,7 @@ PORTNAME= tt-rss PORTVERSION= 1.5.8.1 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://tt-rss.org/download/ diff --git a/www/tt-rss/files/ttrssd.in b/www/tt-rss/files/ttrssd.in index d3e170785461..6df63991e987 100644 --- a/www/tt-rss/files/ttrssd.in +++ b/www/tt-rss/files/ttrssd.in @@ -43,7 +43,7 @@ ttrssd_start() { ttrssd_stop() { [ -f $pidfile ] || (echo "$name not running?"; exit 1) echo "Stopping $long_name" - kill `ps | grep $phpupd | grep -v grep | awk '{print $1}'` + kill `ps x | grep $phpupd | grep -v grep | awk '{print $1}'` rm -f $pidfile } |