diff options
author | andreas <andreas@FreeBSD.org> | 1997-02-22 14:56:46 +0000 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1997-02-22 14:56:46 +0000 |
commit | 959d95bcd7306a7fbb6fcc2d2f1a243ec2287f40 (patch) | |
tree | 2a5e64af89fdfaccce6fb1132eb165ab21ce4025 /news/dnews/files | |
parent | bf858cc86bbfed1e9c466359f9d60f1482852b78 (diff) | |
download | FreeBSD-ports-959d95bcd7306a7fbb6fcc2d2f1a243ec2287f40.zip FreeBSD-ports-959d95bcd7306a7fbb6fcc2d2f1a243ec2287f40.tar.gz |
New port dnews 2.7q.
This is the last official release of dnews and it's a FreeBSD binary ;-)
Remember 4 weeks trial, after that you have to get a licence, even if
you are a school or univerity, which get it for free.
Diffstat (limited to 'news/dnews/files')
-rw-r--r-- | news/dnews/files/dnews.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/news/dnews/files/dnews.sh b/news/dnews/files/dnews.sh new file mode 100644 index 0000000..7284576 --- /dev/null +++ b/news/dnews/files/dnews.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +# start dnews if it's really there ... usually in /usr/local ... + +[ -x /usr/local/dnews/dnews_start ] \ + && /usr/local/dnews/dnews_start > /dev/null 2>&1 & + +# dnews started successfully if exit status = 0 + +if [ $? -eq 0 ]; then + echo -n ' dnews' +fi |