diff options
author | Dimitri Mazmanov <dimitri.mazmanov@ericsson.com> | 2017-01-31 13:51:31 +0100 |
---|---|---|
committer | Dimitri Mazmanov <dimitri.mazmanov@ericsson.com> | 2017-01-31 13:51:31 +0100 |
commit | e5385c4d1a709a6eb25144340bd3ca872c6ae33e (patch) | |
tree | ec77a2ada80bc316c7cf7c4d884bcdf7549fac78 /tools/keystone | |
parent | 877657a5f54fb7a49d2f423fb2080abcb2e6f2e0 (diff) |
Fix executable
Change-Id: I8a78fcc939ce0007bff6bb978360d06706cd87e4
Signed-off-by: Dimitri Mazmanov <dimitri.mazmanov@ericsson.com>
Diffstat (limited to 'tools/keystone')
-rwxr-xr-x | tools/keystone/run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/keystone/run.sh b/tools/keystone/run.sh index a4dca82..433438c 100755 --- a/tools/keystone/run.sh +++ b/tools/keystone/run.sh @@ -86,7 +86,7 @@ function run_on_target() { sshpass -p r00tme ssh 2>/dev/null $ssh_options root@${installer_ip} \ "ssh $ssh_options $1 \"cd /root/ && chmod +x ${runnable}\"" &> /dev/null sshpass -p r00tme ssh 2>/dev/null $ssh_options root@${installer_ip} \ - "ssh $ssh_options $1 \"cd /root/ && nohup ${runnable} > ${runnable}.log 2> /dev/null\"" &> /dev/null + "ssh $ssh_options $1 \"cd /root/ && ./${runnable} > ${runnable}.log 2> /dev/null\"" &> /dev/null # Output here sshpass -p r00tme ssh 2>/dev/null $ssh_options root@${installer_ip} \ "ssh $ssh_options $1 \"cd /root/ && cat ${runnable}.log\"" |