diff options
author | Sergey A. Osokin <osa@FreeBSD.org> | 2005-10-28 07:16:04 +0000 |
---|---|---|
committer | Sergey A. Osokin <osa@FreeBSD.org> | 2005-10-28 07:16:04 +0000 |
commit | f646ebc24a51dfc92d8a99bedccbf8c50e085569 (patch) | |
tree | f52901c1a7a7ea4001fb7064e5623a5e9d1e40fc /net/3proxy/files/3proxy.sh | |
parent | BROKEN: Conflicting dependencies (apache 1.x vs apache 2.x) (diff) |
Update to latest release 0.5.1b.
rcNGfy, add manpages.
Notes
Notes:
svn path=/head/; revision=146546
Diffstat (limited to 'net/3proxy/files/3proxy.sh')
-rw-r--r-- | net/3proxy/files/3proxy.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/net/3proxy/files/3proxy.sh b/net/3proxy/files/3proxy.sh deleted file mode 100644 index 72f337b3e7a9..000000000000 --- a/net/3proxy/files/3proxy.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -case "$1" in -'start') - %%PREFIX%%/bin/3proxy %%PREFIX%%/etc/3proxy.cfg \ - && echo -n " 3proxy" \ - || echo "3proxy startup failed" - ;; - -'stop') - /usr/bin/killall 3proxy - ;; - -*) - echo "Usage: ${0} { start | stop }" - exit 1 - ;; -esac -exit 0 |