Add a --version (-V) option.

Now that we imported the feature from redo, might as well use it.
This commit is contained in:
Avery Pennarun 2012-01-06 13:45:43 -05:00
parent cbc32ff8d8
commit 41d1f73dc2
2 changed files with 6 additions and 1 deletions

2
all.do
View File

@ -1,7 +1,7 @@
exec >&2
UI=
[ "$(uname)" = "Darwin" ] && UI=ui-macos/all
redo-ifchange Documentation/all $UI
redo-ifchange Documentation/all version/all $UI
echo
echo "What now?"

View File

@ -63,6 +63,7 @@ seed-hosts= with -H, use these hostnames for initial scan (comma-separated)
no-latency-control sacrifice latency to improve bandwidth benchmarks
wrap= restart counting channel numbers after this number (for testing)
D,daemon run in the background as a daemon
V,version print sshuttle's version number
syslog send log messages to syslog (default if you use --daemon)
pidfile= pidfile name (only if using --daemon) [./sshuttle.pid]
server (internal use only)
@ -72,6 +73,10 @@ hostwatch (internal use only)
o = options.Options(optspec)
(opt, flags, extra) = o.parse(sys.argv[2:])
if opt.version:
import version
print version.TAG
sys.exit(0)
if opt.daemon:
opt.syslog = 1
if opt.wrap: