Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-06-23 12:13:46 +02:00
parent eeaab438c2
commit a53782805d
1 changed files with 23 additions and 0 deletions

View File

@ -12,12 +12,19 @@ Solutions:
echo $function $args
) | ssh foo
Works partly, does not work for export = ...
Needs to copy over lib every time again!
2)
scp $dir/lib.sh root@foo:/tmp/lib.sh
cat << DONE | ssh root@foo sh
source /tmp/lib.sh
export foo=bla
function args
DONE
Caches lib directory
3) follow up to 1)
__run_remote()
{
@ -28,6 +35,22 @@ Solutions:
eof
4) final solution
- write for every remote job a new function
- this functions prepares env + reuses ssh header
__cdist_remote_explorer()
{
cat << eof
$__cdist_remote_header
export foo1=bar
export foo2=bar
export foo3=bar
"$@"
eof | __cdist_ssh
}
Problems found and solved: