commit 56be64f8181b2f0b18ba68a90f98344d8e862ec1 from: Omar Polo date: Thu Nov 25 18:31:17 2021 UTC update the readme commit - 90fbce4058c3373fd0899a6160ce7e7b6f239830 commit + 56be64f8181b2f0b18ba68a90f98344d8e862ec1 blob - 5a5c2d29399cd68f6c9b4341d7dfef3888db6638 blob + 30b8383651f6403753c615669b40a565ebc57b79 --- README.md +++ README.md @@ -3,19 +3,13 @@ lstun is a simple utility to lazily (on demand) spawn a ssh tunnel to a remote machine and kill it after some time of inactivity. -Given its narrow scope, it's probably not useful to anybody but me so -I haven't invested much time in making it easily portable. That said, -it shouldn't be hard to compile it in non-OpenBSD systems: you have -just to compile it by hand and (probably) provide an implementation -for strtonum(3) and getprogname(3). - To compile it just run - make + $ ./autogen.sh # if building from a git checkout + $ ./configure + $ make + # make install # eventually The only dependency is libevent. -By default it uses `/usr/bin/ssh`, you can change it at compile time -with `-D SSH_PATH=`. - Check out the manpage for the usage.