X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=remoteusage%2Faboriginal.mdwn;h=569b338fddafdbe5b71a8f4c960cee313f330bd5;hb=b370ccb1d5ef97c482fe42840ff8aee75e249e0a;hp=540381b752913109112f8140ba7cd1054a5bfcdd;hpb=264ce3866a61e26da9b644a522cd9e857ac94c7b;p=obsolete%2Fnotmuch-wiki diff --git a/remoteusage/aboriginal.mdwn b/remoteusage/aboriginal.mdwn index 540381b..569b338 100644 --- a/remoteusage/aboriginal.mdwn +++ b/remoteusage/aboriginal.mdwn @@ -7,17 +7,14 @@ other requirements and general information. This solution uses one pre-made ssh connection where the client is put into "master" mode (-M) for connection sharing. The wrapper script then uses the control socket created by this pre-made ssh connection for -its own connection. - -Write the following code to a file, for example `remote-notmuch.sh`. -There is just one line to that normally needs configuration: - - readonly SSH_CONTROL_SOCK='~'/.ssh/master-user@host:22 - -the options howto are presented after the script. +its own connection. As long as master ssh connection is live, slave +can use it. Disconnecting master all future attempts to connect +from the script will fail. ## The script +Write the following code to a file, for example `remote-notmuch.sh`. + #!/bin/bash # http://notmuchmail.org/remoteusage/aboriginal/ @@ -55,6 +52,11 @@ the options howto are presented after the script. echo " See`sed '1d;2d;s/.//;q' "$0"` for help." +Note the `0.1` in ssh command line. It is used to avoid any opportunistic +behaviour ssh might do; for example if control socket is not alive ssh +would attempt to do it's own ssh connection to remote ssh server. As +address `0.1` is invalid this attempt will fail early. + ## Test Easiest way to test this script is to run the pre-made ssh connection @@ -69,10 +71,10 @@ terminal and then test the script with `./remote-notmuch.sh help` Note that the '~' is inside single quotes for a reason. In this case shell never expand it to `$HOME` -- ssh does it by not reading -`$HOME` but checking the real user home directory from `/etc/passewd`. +`$HOME` but checking the real user home directory from `/etc/passwd`. For security purposes this is just how it should be. -## Tunkkaa +## Tune The path `'~'/.ssh/master-user@host:22` might look too generic to be used as is as the control socket after initial testing (but it can @@ -97,12 +99,3 @@ to the `./remote-notmuch.sh` wrapper script testing with See the section *Configure Emacs on the client computer* in [[remoteusage|remoteusage]] how to do this. The instructions are the same. - -## Fun - -Original [BSD Licence](http://en.wikipedia.org/wiki/BSD_licenses) -is 4-clause license. -When 3 rd. clause was removed, the new license was not original anymore. -Similarly, the requirement for this version are the same as in -[[remoteusage|remoteusage]] page except the 3 rd. requirement -(password-free login) is not effective here.