diff options
author | jbeich <jbeich@FreeBSD.org> | 2016-11-07 14:24:37 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2016-11-07 14:24:37 +0800 |
commit | 252d51d78e32403e2e088db0d82e603399bc907d (patch) | |
tree | 57ca8bc20c449ef89edccd3e4d0b357eab7ce43a /security/tor/Makefile | |
parent | 80a1fcdf8d29fd9cd4eafdd5b367e86bcb9241ab (diff) | |
download | freebsd-ports-gnome-252d51d78e32403e2e088db0d82e603399bc907d.tar.gz freebsd-ports-gnome-252d51d78e32403e2e088db0d82e603399bc907d.tar.zst freebsd-ports-gnome-252d51d78e32403e2e088db0d82e603399bc907d.zip |
security/tor: improve multi-instance support
- rc.d commands now accept optional instance argument
- `status` command output is no longer ambigous
before:
$ service tor status
tor is running as pid 22222.
tor is running as pid 33333.
tor is running as pid 11111.
after:
$ service tor status
tor instance inst1: tor is running as pid 22222.
tor instance inst2: tor is running as pid 33333.
tor main instance: tor is running as pid 11111.
$ service tor restart inst1
tor instance inst1: Stopping tor.
Waiting for PIDS: 22222.
Starting tor.
[...]
PR: 207129
Submitted by: Yuri Victorovich <yuri@rawbw.com> (maintainer)
Diffstat (limited to 'security/tor/Makefile')
-rw-r--r-- | security/tor/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/tor/Makefile b/security/tor/Makefile index 3a04a6860785..7d7ecae0940b 100644 --- a/security/tor/Makefile +++ b/security/tor/Makefile @@ -3,7 +3,7 @@ PORTNAME= tor PORTVERSION= 0.2.8.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security net ipv6 MASTER_SITES= TOR |