From 9f64444d17f14830d2b1e59d9bbd53cbeccff5ae Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Wed, 23 Feb 2011 13:47:31 +0100 Subject: [PATCH] remove old notes Signed-off-by: Nico Schottelius --- ...-implementation-ideas.TO_FINISH_AND_DELETE | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 doc/internal.REMOVE_PRE_1.0/explorer-implementation-ideas.TO_FINISH_AND_DELETE diff --git a/doc/internal.REMOVE_PRE_1.0/explorer-implementation-ideas.TO_FINISH_AND_DELETE b/doc/internal.REMOVE_PRE_1.0/explorer-implementation-ideas.TO_FINISH_AND_DELETE deleted file mode 100644 index 31e4c048..00000000 --- a/doc/internal.REMOVE_PRE_1.0/explorer-implementation-ideas.TO_FINISH_AND_DELETE +++ /dev/null @@ -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) -