remove old notes
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
parent
deb2df20c0
commit
9f64444d17
1 changed files with 0 additions and 22 deletions
|
@ -1,22 +0,0 @@
|
|||
1) safer and fast version
|
||||
cat blob | ssh host > tmp;
|
||||
for var in ...
|
||||
var=grep ^var= tmp
|
||||
2) slow & secure
|
||||
for var in ...
|
||||
eval var=$(cat single_blob | ssh host"
|
||||
|
||||
3) easy & insecure
|
||||
cat blob | ssh host > tmp; . tmp
|
||||
|
||||
4) - rsync here/explorers target/explorers
|
||||
- ssh target_host for explorer in target/explorers/; do
|
||||
target/explorers/$explorer > target/cache/explorers/$explorer
|
||||
done
|
||||
- rsync target/cache/explorers here/cache/explorers....
|
||||
- MINUS RSYNC!!!!!!!!!??????????
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
TO_MAN: EXPLORER VALUES ARE UNTRUSTED (think of webclients and webapps)
|
||||
|
Loading…
Reference in a new issue