diff options
author | Dimitri Mazmanov <dimitri.mazmanov@ericsson.com> | 2017-01-31 12:52:05 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-01-31 12:52:05 +0000 |
commit | 0e00742f46e5da31dbb62b29b3a9a460197e5e1f (patch) | |
tree | a04d0d978b13e78dcf38e80e613c08d3bcc7ed3e | |
parent | 75f1aa02999ec5f63f3247ac41f4171e85676fe9 (diff) | |
parent | e5385c4d1a709a6eb25144340bd3ca872c6ae33e (diff) |
Merge "Fix executable"
-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\"" |