diff options
Diffstat (limited to 'jjb')
-rwxr-xr-x | jjb/fuel/fuel-deploy.sh | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/jjb/fuel/fuel-deploy.sh b/jjb/fuel/fuel-deploy.sh index 136aac861..2104d9090 100755 --- a/jjb/fuel/fuel-deploy.sh +++ b/jjb/fuel/fuel-deploy.sh @@ -143,14 +143,17 @@ expect { expect "# " send "/usr/bin/ssh -l root $::env(CONTROLLER_NODE_IP)\r" expect "# " +send "PS1=\"tacker_poc> \"\r" +expect -re {tacker_poc> $} send "sudo apt-get install -y git\r" -expect "# " +expect -re {tacker_poc> $} +sleep 10 send "/bin/mkdir -p /root/sfc-poc && cd /root/sfc-poc\r" -expect "# " +expect -re {tacker_poc> $} send "git clone https://gerrit.opnfv.org/gerrit/fuel && cd fuel\r" -expect "# " +expect -re {tacker_poc> $} send "/bin/bash /root/sfc-poc/fuel/prototypes/sfc_tacker/poc.tacker-up.sh\r" -expect "# " +expect -re {tacker_poc> $} send "exit\r" expect "Connection to $::env(CONTROLLER_NODE_IP) closed. " send "exit\r" |