mirror of
https://github.com/sshuttle/sshuttle.git
synced 2025-06-20 09:57:42 +02:00
Add a --version (-V) option.
Now that we imported the feature from redo, might as well use it.
This commit is contained in:
parent
cbc32ff8d8
commit
41d1f73dc2
2
all.do
2
all.do
@ -1,7 +1,7 @@
|
|||||||
exec >&2
|
exec >&2
|
||||||
UI=
|
UI=
|
||||||
[ "$(uname)" = "Darwin" ] && UI=ui-macos/all
|
[ "$(uname)" = "Darwin" ] && UI=ui-macos/all
|
||||||
redo-ifchange Documentation/all $UI
|
redo-ifchange Documentation/all version/all $UI
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo "What now?"
|
echo "What now?"
|
||||||
|
5
main.py
5
main.py
@ -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
|
no-latency-control sacrifice latency to improve bandwidth benchmarks
|
||||||
wrap= restart counting channel numbers after this number (for testing)
|
wrap= restart counting channel numbers after this number (for testing)
|
||||||
D,daemon run in the background as a daemon
|
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)
|
syslog send log messages to syslog (default if you use --daemon)
|
||||||
pidfile= pidfile name (only if using --daemon) [./sshuttle.pid]
|
pidfile= pidfile name (only if using --daemon) [./sshuttle.pid]
|
||||||
server (internal use only)
|
server (internal use only)
|
||||||
@ -72,6 +73,10 @@ hostwatch (internal use only)
|
|||||||
o = options.Options(optspec)
|
o = options.Options(optspec)
|
||||||
(opt, flags, extra) = o.parse(sys.argv[2:])
|
(opt, flags, extra) = o.parse(sys.argv[2:])
|
||||||
|
|
||||||
|
if opt.version:
|
||||||
|
import version
|
||||||
|
print version.TAG
|
||||||
|
sys.exit(0)
|
||||||
if opt.daemon:
|
if opt.daemon:
|
||||||
opt.syslog = 1
|
opt.syslog = 1
|
||||||
if opt.wrap:
|
if opt.wrap:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user